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
This commit is contained in:
Alexander Couzens 2020-09-10 22:28:40 +02:00
parent 4ad3a356f3
commit f74b5cba34
1 changed files with 2 additions and 1 deletions

View File

@ -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);