Change in osmo-ttcn3-hacks[master]: bsc: Allow disabling dyn TS SDCCH8 tests

This is merely a historical archive of years 2008-2021, before the migration to mailman3.

A maintained and still updated list archive can be found at https://lists.osmocom.org/hyperkitty/list/gerrit-log@lists.osmocom.org/.

pespin gerrit-no-reply at lists.osmocom.org
Tue Jul 20 14:54:37 UTC 2021


pespin has uploaded this change for review. ( https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/24967 )


Change subject: bsc: Allow disabling dyn TS SDCCH8 tests
......................................................................

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
---
M bsc/BSC_Tests.ttcn
1 file changed, 10 insertions(+), 3 deletions(-)



  git pull ssh://gerrit.osmocom.org:29418/osmo-ttcn3-hacks refs/changes/67/24967/1

diff --git a/bsc/BSC_Tests.ttcn b/bsc/BSC_Tests.ttcn
index f562df3..2b11dc9 100644
--- a/bsc/BSC_Tests.ttcn
+++ b/bsc/BSC_Tests.ttcn
@@ -684,6 +684,11 @@
 	   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 @@
 	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() );

-- 
To view, visit https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/24967
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings

Gerrit-Project: osmo-ttcn3-hacks
Gerrit-Branch: master
Gerrit-Change-Id: Ib956401030e6a97db218823c997c61c335fbd581
Gerrit-Change-Number: 24967
Gerrit-PatchSet: 1
Gerrit-Owner: pespin <pespin at sysmocom.de>
Gerrit-MessageType: newchange
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.osmocom.org/pipermail/gerrit-log/attachments/20210720/f06fa945/attachment.htm>


More information about the gerrit-log mailing list