lynxis lazus has uploaded this change for review. ( https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/43452?usp=email )
Change subject: SGSN: Iu: ensure every tests use a new subscriber ......................................................................
SGSN: Iu: ensure every tests use a new subscriber
If a test uses the same subscriber as the previuos tests, the test might fail, because there is no need to request for authentication data, because the UE still has a valid security context with the network
Change-Id: I4928d63b3166843fa90b19bea4880da125474906 --- M sgsn/SGSN_Tests_Iu.ttcn 1 file changed, 2 insertions(+), 2 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-ttcn3-hacks refs/changes/52/43452/1
diff --git a/sgsn/SGSN_Tests_Iu.ttcn b/sgsn/SGSN_Tests_Iu.ttcn index aa4af49..a1a89bc 100644 --- a/sgsn/SGSN_Tests_Iu.ttcn +++ b/sgsn/SGSN_Tests_Iu.ttcn @@ -83,7 +83,7 @@ f_init(); f_vty_config(SGSNVTY, "sgsn", "encryption uea 1 2"); f_sleep(1.0); - vc_conn := f_start_handler(refers(f_TC_iu_attach), testcasename(), g_gb, 1001, expect_ciph := true); + vc_conn := f_start_handler(refers(f_TC_iu_attach), testcasename(), g_gb, 1010, expect_ciph := true); vc_conn.done; f_cleanup(); } @@ -417,7 +417,7 @@ var BSSGP_ConnHdlr vc_conn; f_init(); f_sleep(1.0); - vc_conn := f_start_handler(refers(f_TC_update_ctx_err_ind_from_ggsn), testcasename(), g_gb, 1004); + vc_conn := f_start_handler(refers(f_TC_update_ctx_err_ind_from_ggsn), testcasename(), g_gb, 1011); vc_conn.done; f_cleanup(); }