 
            pespin has submitted this change. ( https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/38574?usp=email )
Change subject: hnbgw: Add missing timer stop after use ......................................................................
hnbgw: Add missing timer stop after use
Change-Id: I2c722f524de603b75f2b7c6ba85d074518d1f51c --- M hnbgw/HNBGW_Tests.ttcn 1 file changed, 3 insertions(+), 0 deletions(-)
Approvals: fixeria: Looks good to me, but someone else must approve osmith: Looks good to me, approved Jenkins Builder: Verified
diff --git a/hnbgw/HNBGW_Tests.ttcn b/hnbgw/HNBGW_Tests.ttcn index f7346a9..bfe854b 100644 --- a/hnbgw/HNBGW_Tests.ttcn +++ b/hnbgw/HNBGW_Tests.ttcn @@ -1016,6 +1016,7 @@ setverdict(fail, "Timeout waiting for DLCX"); } } + T.stop
tx := valueof(ts_RANAP_IuReleaseComplete()); f_iuh2iu(tx); @@ -1075,6 +1076,7 @@ setverdict(fail, "Timeout waiting for DLCX"); } } + T.stop; }
testcase TC_rab_assign_fail() runs on test_CT { @@ -2391,6 +2393,7 @@ setverdict(fail, "Timeout waiting for DLCX"); } } + T.stop;
tx := valueof(ts_RANAP_IuReleaseComplete()); f_iuh2iu(tx);
