aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVadim Yanitskiy <vyanitskiy@sysmocom.de>2020-10-20 02:16:01 +0700
committerVadim Yanitskiy <vyanitskiy@sysmocom.de>2020-10-20 02:46:13 +0700
commit780bc07a25a94de3d34fdbdedee0892f478c4129 (patch)
treebe0f8cb81f0f733a757ff37ff9687e69d74c643d
parent0b65219ec57ca919026e01089d27148e9241ba77 (diff)
BTS_Tests: introduce TC_meas_res_speech_tchh_toa256()
-rw-r--r--bts/BTS_Tests.ttcn17
1 files changed, 17 insertions, 0 deletions
diff --git a/bts/BTS_Tests.ttcn b/bts/BTS_Tests.ttcn
index 79931a32..cc384332 100644
--- a/bts/BTS_Tests.ttcn
+++ b/bts/BTS_Tests.ttcn
@@ -3004,6 +3004,22 @@ testcase TC_meas_res_speech_tchh() runs on test_CT {
}
Misc_Helpers.f_shutdown(__BFILE__, __LINE__);
}
+testcase TC_meas_res_speech_tchh_toa256() runs on test_CT {
+ var template RSL_IE_ChannelMode ch_mode;
+ var ConnHdlr vc_conn;
+ var ConnHdlrPars pars;
+ f_init();
+ f_vty_config(BTSVTY, "bts 0", "supp-meas-info toa256");
+ ch_mode := ts_RSL_ChanMode(RSL_CHRT_TCH_H, RSL_CMOD_SP_GSM1);
+ for (var integer ss := 0; ss <= 1; ss := ss + 1) {
+ pars := valueof(t_Pars(t_RslChanNr_Lm(5, ss), ch_mode));
+ pars.l1_pars.toa256_enabled := true;
+ vc_conn := f_start_handler(refers(f_TC_meas_res_periodic), pars,
+ pcu_comp := false, trxc_comp := true);
+ vc_conn.done;
+ }
+ Misc_Helpers.f_shutdown(__BFILE__, __LINE__);
+}
testcase TC_meas_res_sign_tchf() runs on test_CT {
var ConnHdlr vc_conn;
@@ -7109,6 +7125,7 @@ control {
execute( TC_rach_load_count() );
execute( TC_meas_res_speech_tchf() );
execute( TC_meas_res_speech_tchh() );
+ execute( TC_meas_res_speech_tchh_toa256() );
execute( TC_meas_res_sign_tchf() );
execute( TC_meas_res_sign_tchh() );
execute( TC_meas_res_sign_sdcch4() );