fixeria has uploaded this change for review.
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(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-ttcn3-hacks refs/changes/41/42341/1
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);
To view, visit change 42341. To unsubscribe, or for help writing mail filters, visit settings.