From f74b5cba340b26cf949692f18065f2ffebf5488c Mon Sep 17 00:00:00 2001 From: Alexander Couzens Date: Thu, 10 Sep 2020 22:28:40 +0200 Subject: BSC_Tests: check for the same measurement bandwidth as in SI2quater on Channel Release osmo-bsc is using the same LTE neighbors of the SI2quater in the Channel Release - Cell selection indicator after release of all TCH and SDCCH IE. Ensure the same measurement bandwidth is present to not overwrite the measurements bandwidth from the SI2quater. Change-Id: I9aa30dfd1e2c1b80e037bd71ebc4cdd3752638b4 --- bsc/BSC_Tests.ttcn | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'bsc') diff --git a/bsc/BSC_Tests.ttcn b/bsc/BSC_Tests.ttcn index 2eb9b241..540d88f0 100644 --- a/bsc/BSC_Tests.ttcn +++ b/bsc/BSC_Tests.ttcn @@ -2220,9 +2220,10 @@ private function f_tr_rr_chan_rel_earfcns(integer count) return template CellSel { var template CellSelIndValue_EUTRAN_Descrs cells := {}; + /* the lte neighbors must match the config & vty to pass this test */ for (var integer i := 0; i < count; i := i + 1) { var integer earfcn := f_test_si2quater_earfcn_by_idx(i); - cells[i] := tr_CellSelIndValue_EUTRAN_Descr(earfcn, meas_bw_presence := '0'B, meas_bw := omit); + cells[i] := tr_CellSelIndValue_EUTRAN_Descr(earfcn, '1'B, 3); } return tr_CellSelIndValue_EUTRAN(cells); -- cgit v1.2.3