pespin has submitted this change. ( https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/37584?usp=email )
Change subject: sgsn: Fix regression t_guard not passed ......................................................................
sgsn: Fix regression t_guard not passed
I forgot to pass this param when moving some code, and some tests which set a higher guard time then where failing.
Fixes: 0737428fa71b7d9bb849a9a000b3e1a7bcdce2ca Change-Id: I83cfd0d2fd148c8874b6e176af7273df7cb69174 --- M sgsn/SGSN_Tests.ttcn 1 file changed, 14 insertions(+), 1 deletion(-)
Approvals: pespin: Looks good to me, approved Jenkins Builder: Verified
diff --git a/sgsn/SGSN_Tests.ttcn b/sgsn/SGSN_Tests.ttcn index 2cecafd..01aab2b 100644 --- a/sgsn/SGSN_Tests.ttcn +++ b/sgsn/SGSN_Tests.ttcn @@ -437,7 +437,7 @@ gb[1].cfg.bvc[0].cell_id, gb[2].cfg.bvc[0].cell_id } - pars := f_new_BSSGP_ConnHdlrPars(imsi_suffix, cell_ids, t_NetPars(expect_ciph := expect_ciph)); + pars := f_new_BSSGP_ConnHdlrPars(imsi_suffix, cell_ids, t_NetPars(expect_ciph := expect_ciph), t_guard := t_guard); if (g_ranap_enable) { pars.sccp_addr_local := g_ranap[0].sccp_addr_own; pars.sccp_addr_peer := g_ranap[0].sccp_addr_peer;