aboutsummaryrefslogtreecommitdiffstats
path: root/bsc
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2019-05-28 18:11:33 +0200
committerHarald Welte <laforge@gnumonks.org>2019-05-29 06:06:31 +0000
commit58cf682d82e68193aa78f2789e2e4aa9fd8fdddc (patch)
tree62ea43919a79df52fb224446655fdd89c5109947 /bsc
parent2a92e2a75cb0466882910970e7ad38c144aeefdd (diff)
bsc: Add module param to disable osmux (fix bsc-latest jenkins job)
ttcn3-bsc-test-latest currently fails on most tests because it tries to use "osmux off" VTY param and only current osmo-bsc master supports it. Change-Id: I61e4c59b2926f3f70cb6d0190a8683861e54179a
Diffstat (limited to 'bsc')
-rw-r--r--bsc/BSC_Tests.ttcn13
1 files changed, 11 insertions, 2 deletions
diff --git a/bsc/BSC_Tests.ttcn b/bsc/BSC_Tests.ttcn
index 85260bc7..a84277f0 100644
--- a/bsc/BSC_Tests.ttcn
+++ b/bsc/BSC_Tests.ttcn
@@ -122,6 +122,11 @@ modulepar {
sio := '83'O,
rctx := 0
};
+
+ /* 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;
}
private function f_gen_test_hdlr_pars() return TestHdlrParams {
@@ -335,7 +340,9 @@ function f_init(integer nr_bts := NUM_BTS, boolean handler_mode := false, boolea
activate(as_Tguard());
f_init_vty("VirtMSC");
- f_vty_allow_osmux(allow_osmux);
+ if (mp_enable_osmux_test) {
+ f_vty_allow_osmux(allow_osmux);
+ }
/* Call a function of our 'parent component' RAN_Adapter_CT to start the
* MSC-side BSSAP emulation */
@@ -4061,7 +4068,9 @@ control {
execute( TC_assignment_codec_req_hr_fr() );
execute( TC_assignment_codec_req_fr_hr() );
- execute( TC_assignment_osmux() );
+ if (mp_enable_osmux_test) {
+ execute( TC_assignment_osmux() );
+ }
/* RLL Establish Indication on inactive DCHAN / SAPI */
execute( TC_rll_est_ind_inact_lchan() );