aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVadim Yanitskiy <vyanitskiy@sysmocom.de>2023-07-13 04:18:34 +0700
committerfixeria <vyanitskiy@sysmocom.de>2023-07-14 14:48:01 +0000
commit982ac2d1e24354e46e862e9a911371e029f4ccf0 (patch)
tree22586279eefcea9498301bc836f8073617148051
parentcc92ba77ab169312c24bab42cae5b3196e51be68 (diff)
BTS_Tests: call f_shutdown() in TC_speech_no_rtp_tch[fh]
We need to call f_shutdown() to properly terminate all components. All (at least speech related) testcases do this function call. Change-Id: Ib706fe3d9901f9cd1a0efa7d9ffd3b5b8a4472d7
-rw-r--r--bts/BTS_Tests.ttcn4
1 files changed, 4 insertions, 0 deletions
diff --git a/bts/BTS_Tests.ttcn b/bts/BTS_Tests.ttcn
index 9482561f..2989cb8a 100644
--- a/bts/BTS_Tests.ttcn
+++ b/bts/BTS_Tests.ttcn
@@ -8291,6 +8291,8 @@ testcase TC_speech_no_rtp_tchf() runs on test_CT {
pars := valueof(t_Pars(ts_RslChanNr_Bm(1), ts_RSL_ChanMode(RSL_CHRT_TCH_F, RSL_CMOD_SP_GSM1)));
vc_conn := f_start_handler(refers(f_TC_speech_no_rtp), pars);
vc_conn.done;
+
+ Misc_Helpers.f_shutdown(__BFILE__, __LINE__);
}
testcase TC_speech_no_rtp_tchh() runs on test_CT {
var ConnHdlr vc_conn;
@@ -8302,6 +8304,8 @@ testcase TC_speech_no_rtp_tchh() runs on test_CT {
pars := valueof(t_Pars(ts_RslChanNr_Lm(5, 0), ts_RSL_ChanMode(RSL_CHRT_TCH_H, RSL_CMOD_SP_GSM1)));
vc_conn := f_start_handler(refers(f_TC_speech_no_rtp), pars);
vc_conn.done;
+
+ Misc_Helpers.f_shutdown(__BFILE__, __LINE__);
}
/* Verify handling of Downlink and Uplink speech frames */