lynxis lazus has uploaded this change for review. ( https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/40652?usp=email )
Change subject: BSSGP_ConnHdlr: f_service_request: prevent a test error in GSUP SAI Req ......................................................................
BSSGP_ConnHdlr: f_service_request: prevent a test error in GSUP SAI Req
The GSUP SAI Req rejects a '*' as dynamic test error. Use the IMSI as valid imsi.
Change-Id: Ibfedab844a3703f76538d66febf747fcca5d4d1a --- M sgsn/BSSGP_ConnHdlr.ttcn 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-ttcn3-hacks refs/changes/52/40652/1
diff --git a/sgsn/BSSGP_ConnHdlr.ttcn b/sgsn/BSSGP_ConnHdlr.ttcn index 8d9ba5b..e184012 100644 --- a/sgsn/BSSGP_ConnHdlr.ttcn +++ b/sgsn/BSSGP_ConnHdlr.ttcn @@ -795,7 +795,7 @@ Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Service Request: Unexpected GMM Auth Req"); } - [not expect_auth] GSUP.receive(tr_GSUP_SAI_REQ(*)) { + [not expect_auth] GSUP.receive(tr_GSUP_SAI_REQ(g_pars.imsi)) { Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Service Request: Unexpected GSUP SAI Req"); }