aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2021-07-20 17:00:38 +0200
committerPau Espin Pedrol <pespin@sysmocom.de>2021-07-20 17:00:41 +0200
commit23510fb72185c20a72a20287acee9668b2900480 (patch)
treef0f35c83803106f1446d6b4908db9de43fe4bff9
parente076b3ff8670b3de65d142ba4f740da1a4c1d3dc (diff)
bsc: Drop mp_enable_osmux_test
This module parameter is not needed anymore, since latest already supports this feature for a while. Change-Id: I3a2a4f984443a40285440a7fc54b1797a943e4b0
-rw-r--r--bsc/BSC_Tests.ttcn13
1 files changed, 2 insertions, 11 deletions
diff --git a/bsc/BSC_Tests.ttcn b/bsc/BSC_Tests.ttcn
index 2b11dc96..ae805e36 100644
--- a/bsc/BSC_Tests.ttcn
+++ b/bsc/BSC_Tests.ttcn
@@ -680,11 +680,6 @@ modulepar {
};
boolean mp_enable_lcs_tests := true;
- /* Whether to enable osmux tests. Can be dropped completely and enable
- 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) */
@@ -1121,9 +1116,7 @@ function f_init(integer nr_bts := NUM_BTS, boolean handler_mode := false, boolea
activate(as_Tguard());
f_init_vty("VirtMSC");
- if (mp_enable_osmux_test) {
- f_vty_allow_osmux(allow_osmux);
- }
+ f_vty_allow_osmux(allow_osmux);
var my_BooleanList allow_attach := { false, false, false };
f_init_statsd("VirtMSC", vc_STATSD, mp_test_ip, mp_bsc_statsd_port);
@@ -9415,9 +9408,7 @@ control {
execute( TC_assignment_codec_req_hr_fr() );
execute( TC_assignment_codec_req_fr_hr() );
- if (mp_enable_osmux_test) {
- execute( TC_assignment_osmux() );
- }
+ execute( TC_assignment_osmux() );
/* RLL Establish Indication on inactive DCHAN / SAPI */
execute( TC_rll_est_ind_inact_lchan() );