From a99ad26639072df8a508aca280100c0d6367627f Mon Sep 17 00:00:00 2001 From: Philipp Maier Date: Tue, 22 Jan 2019 15:35:42 +0100 Subject: MSC_Tests: individual IMSI for TC_lu_and_mt_sms_paging_and_nothing The testcase TC_lu_and_mt_sms_paging_and_nothing is currently using an IMSI that ends on 43. The same IMSI is used by TC_mo_cc_bssmap_clear as well. Since TC_lu_and_mt_sms_paging_and_nothing is running before TC_mo_cc_bssmap_clear, the re-use of the IMSI triggers the MSC to continue the paging procedure. The MSC then eventually tries to deliver the SMS from TC_lu_and_mt_sms_paging_and_nothing. This will disturb the execution of TC_mo_cc_bssmap_clear, which then fails. Lets make sure that TC_lu_and_mt_sms_paging_and_nothing uses an individual IMSI that is never used again throught the execution of the testsuite. Change-Id: I66f8310981078dd032c47fcc97810944cf0c856f Related: OS#3762 --- msc/MSC_Tests.ttcn | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/msc/MSC_Tests.ttcn b/msc/MSC_Tests.ttcn index b72c580c..a8f37bd9 100644 --- a/msc/MSC_Tests.ttcn +++ b/msc/MSC_Tests.ttcn @@ -2071,7 +2071,7 @@ testcase TC_lu_and_mt_sms_paging_and_nothing() runs on MTC_CT { var BSC_ConnHdlrPars pars; var BSC_ConnHdlr vc_conn; f_init(); - pars := f_init_pars(43); + pars := f_init_pars(1843); vc_conn := f_start_handler_with_pars(refers(f_tc_lu_and_mt_sms_paging_and_nothing), pars); f_sleep(2.0); f_vty_sms_send(hex2str(pars.imsi), "2342", "Hello SMS"); -- cgit v1.2.3