pespin has uploaded this change for review. (
https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/29291 )
Change subject: bts: Fix BTS_Tests_VAMOS tests using AMR
......................................................................
bts: Fix BTS_Tests_VAMOS tests using AMR
Recent commit forgot to add the required new params to VAMOS tests.
Fixes: 091c5305555f4c6d46811424d42d3ddafbc9176d
Change-Id: Ia382e200b51a7ddb99dc2583b538432740fd298c
---
M bts/BTS_Tests_VAMOS.ttcn
1 file changed, 3 insertions(+), 0 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-ttcn3-hacks refs/changes/91/29291/1
diff --git a/bts/BTS_Tests_VAMOS.ttcn b/bts/BTS_Tests_VAMOS.ttcn
index 3498c61..637a256 100644
--- a/bts/BTS_Tests_VAMOS.ttcn
+++ b/bts/BTS_Tests_VAMOS.ttcn
@@ -174,6 +174,9 @@
for (var integer ch := 0; ch < lengthof(test[i]); ch := ch + 1) {
pars[ch] := valueof(t_Pars(test[i][ch].chan_nr,
test[i][ch].chan_mode));
+ if (test[i][ch].chan_mode.coding_alg_rate == RSL_CMOD_SP_GSM3) {
+ pars[ch].mr_conf := valueof(ts_RSL_MultirateCfg(false, 0, '00000100'B /*
5,90k */));
+ }
vc_conn[ch] := f_start_handler(handler, pars[ch], l1ctl := false);
}
--
To view, visit
https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/29291
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: Ia382e200b51a7ddb99dc2583b538432740fd298c
Gerrit-Change-Number: 29291
Gerrit-PatchSet: 1
Gerrit-Owner: pespin <pespin(a)sysmocom.de>
Gerrit-MessageType: newchange