fixeria has submitted this change. ( https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/42341?usp=email )
Change subject: s1gw: fix TC_uemux_e_rab_release_ind: pass release_ind := true ......................................................................
s1gw: fix TC_uemux_e_rab_release_ind: pass release_ind := true
TC_uemux_e_rab_release_ind never actually tests the release indication because release_ind is false instead of true. The test body becomes identical to TC_uemux_e_rab_setup - no release indication is ever sent.
Change-Id: Ieed5d8a2bf4f696efc1071569090facc7b731f96 Fixes: cdc149a6 ("s1gw: add UEMux TCs for E-RAB SETUP and RELEASE") --- M s1gw/S1GW_Tests.ttcn 1 file changed, 1 insertion(+), 1 deletion(-)
Approvals: pespin: Looks good to me, approved Jenkins Builder: Verified
diff --git a/s1gw/S1GW_Tests.ttcn b/s1gw/S1GW_Tests.ttcn index a498995..6623b1f 100644 --- a/s1gw/S1GW_Tests.ttcn +++ b/s1gw/S1GW_Tests.ttcn @@ -822,7 +822,7 @@ var ERabList erabs := { pars.erabs[i] };
vc_ues[i] := f_UEMuxUE_create(vc_uemux, pars, i, i); - vc_ues[i].start(f_TC_uemux_e_rab_setup_release(erabs, release_ind := false)); + vc_ues[i].start(f_TC_uemux_e_rab_setup_release(erabs, release_ind := true)); }
f_UEMuxUEList_all_done(vc_ues);