aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2021-07-20 16:45:57 +0200
committerPau Espin Pedrol <pespin@sysmocom.de>2021-07-20 16:45:59 +0200
commite076b3ff8670b3de65d142ba4f740da1a4c1d3dc (patch)
treed404f84d32f23a5e2a6e6a1582580dc6f9d6284e
parent188fdff278ef92250396e57167592cd53f502a1f (diff)
bsc: Allow disabling dyn TS SDCCH8 tests
With this we'll avoid running the test in latest. This way we'll not fail after changing the TS for the test and hence other tests won't be affected. Related: SYS#5309 Change-Id: Ib956401030e6a97db218823c997c61c335fbd581
-rw-r--r--bsc/BSC_Tests.ttcn13
1 files changed, 10 insertions, 3 deletions
diff --git a/bsc/BSC_Tests.ttcn b/bsc/BSC_Tests.ttcn
index f562df30..2b11dc96 100644
--- a/bsc/BSC_Tests.ttcn
+++ b/bsc/BSC_Tests.ttcn
@@ -684,6 +684,11 @@ modulepar {
unconditionally once new version of osmo-bsc is released (current
version: 1.4.1) */
boolean mp_enable_osmux_test := true;
+
+ /* Whether to enable dyn TS SDCCH8 tests. Can be dropped completely and enable
+ unconditionally once new version of osmo-bsc is released (current
+ version: 1.7.0) */
+ boolean mp_enable_dyn_sdcch8_test := true;
/* Value set in osmo-bsc.cfg "ms max power" */
uint8_t mp_exp_ms_power_level := 7;
}
@@ -9510,9 +9515,11 @@ control {
execute( TC_dyn_pdch_ipa_act_nack() );
execute( TC_dyn_pdch_osmo_act_deact() );
execute( TC_dyn_pdch_osmo_act_nack() );
- execute( TC_dyn_ts_sdcch8_act_deact() );
- execute (TC_dyn_ts_sdcch8_tch_call_act_deact() );
- execute( TC_dyn_ts_sdcch8_act_nack() );
+ if (mp_enable_dyn_sdcch8_test) {
+ execute( TC_dyn_ts_sdcch8_act_deact() );
+ execute (TC_dyn_ts_sdcch8_tch_call_act_deact() );
+ execute( TC_dyn_ts_sdcch8_act_nack() );
+ }
execute( TC_chopped_ipa_ping() );
execute( TC_chopped_ipa_payload() );