diff options
author | Neels Hofmeyr <neels@hofmeyr.de> | 2019-11-28 01:00:52 +0100 |
---|---|---|
committer | Neels Hofmeyr <neels@hofmeyr.de> | 2019-12-12 16:21:56 +0100 |
commit | d076c52173693e915f634a779262a487dd8c230c (patch) | |
tree | 65fe6aad90c61d7ec3b0a5e108454c457dbfd00b /msc/MSC_Tests.ttcn | |
parent | 26b562c1bdfce94b7fe33cbfcab549b1f443cec1 (diff) |
msc: fix 2 Iu tests: use f_mm_common() instead of f_mm_auth()
Fix these tests by using f_mm_common(), which takes care of Iu auth+ciph:
TC_iu_lu_imsi_reject
TC_iu_lu_imsi_timeout_gsup
Change-Id: Id2bf160ac4e1cad4770202c6a6f1b8eeeee21d68
Diffstat (limited to 'msc/MSC_Tests.ttcn')
-rw-r--r-- | msc/MSC_Tests.ttcn | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/msc/MSC_Tests.ttcn b/msc/MSC_Tests.ttcn index 480ec96..6e482e2 100644 --- a/msc/MSC_Tests.ttcn +++ b/msc/MSC_Tests.ttcn @@ -478,7 +478,7 @@ friend function f_tc_lu_imsi_reject(charstring id, BSC_ConnHdlrPars pars) runs o f_create_gsup_expect(hex2str(g_pars.imsi)); f_cl3_or_initial_ue(l3_lu); - f_mm_auth(); + f_mm_common(); GSUP.receive(tr_GSUP_UL_REQ(g_pars.imsi)); GSUP.send(ts_GSUP_UL_ERR(g_pars.imsi, 23)); alt { @@ -508,7 +508,7 @@ friend function f_tc_lu_imsi_timeout_gsup(charstring id, BSC_ConnHdlrPars pars) f_create_gsup_expect(hex2str(g_pars.imsi)); f_cl3_or_initial_ue(l3_lu); - f_mm_auth(); + f_mm_common(); GSUP.receive(tr_GSUP_UL_REQ(g_pars.imsi)); /* Normally the HLR would need to respond here, but we decide to force a timeout here */ alt { |