aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric Wild <ewild@sysmocom.de>2022-04-02 21:35:56 +0200
committerHoernchen <ewild@sysmocom.de>2022-04-02 19:38:52 +0000
commit6e511ce624c5bd1e7a9de295e8d8a0e5f651f388 (patch)
treeca732eaeb8f3b99a2fab6e78145ccf94ecbcb1f8
parent66448c1e56a7b1f98e9683bf5c0eed7d4f3a93a8 (diff)
fix sgsn and hnbgw test issue introduced in 49888a65dcf1f8d94411aa0724530b8c188c3237
ranops was not isvalue because bssap_reset_retries was not set and not explicitly omitted either, so the ran adapter decided not to create a ran emulation... Change-Id: Ib2d3f1fbcfbd53af1e627bd2cf36c3153fa7d012
-rw-r--r--hnbgw/HNBGW_Tests.ttcn2
-rw-r--r--sgsn/SGSN_Tests.ttcn1
2 files changed, 3 insertions, 0 deletions
diff --git a/hnbgw/HNBGW_Tests.ttcn b/hnbgw/HNBGW_Tests.ttcn
index 745e3331..b2c491e3 100644
--- a/hnbgw/HNBGW_Tests.ttcn
+++ b/hnbgw/HNBGW_Tests.ttcn
@@ -107,6 +107,7 @@ const RanOps MSC_RanOps := {
protocol := RAN_PROTOCOL_RANAP,
transport := RANAP_TRANSPORT_IuCS,
use_osmux := false,
+ bssap_reset_retries := 1,
sccp_addr_local := omit,
sccp_addr_peer := omit
}
@@ -324,6 +325,7 @@ function f_init(charstring id := "HBGW", float guard_timeout := 30.0) runs on te
protocol := RAN_PROTOCOL_RANAP,
transport := RANAP_TRANSPORT_IuCS,
use_osmux := false,
+ bssap_reset_retries := 1,
sccp_addr_local := omit,
sccp_addr_peer := omit
};
diff --git a/sgsn/SGSN_Tests.ttcn b/sgsn/SGSN_Tests.ttcn
index 981e9242..52380688 100644
--- a/sgsn/SGSN_Tests.ttcn
+++ b/sgsn/SGSN_Tests.ttcn
@@ -457,6 +457,7 @@ const RanOps RNC_RanOps := {
protocol := RAN_PROTOCOL_RANAP,
transport := RANAP_TRANSPORT_IuCS,
use_osmux := false,
+ bssap_reset_retries := 1,
sccp_addr_local := omit,
sccp_addr_peer := omit
};