From bcf135a0d0c111644a0af20a92caa7ffe0cb767f Mon Sep 17 00:00:00 2001 From: Pau Espin Pedrol Date: Thu, 8 Sep 2022 13:20:43 +0200 Subject: [PATCH] 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 --- bts/BTS_Tests_VAMOS.ttcn | 3 +++ 1 file changed, 3 insertions(+) diff --git a/bts/BTS_Tests_VAMOS.ttcn b/bts/BTS_Tests_VAMOS.ttcn index 3498c61aa..637a2567c 100644 --- a/bts/BTS_Tests_VAMOS.ttcn +++ b/bts/BTS_Tests_VAMOS.ttcn @@ -174,6 +174,9 @@ runs on test_CT { 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); }