aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Couzens <lynxis@fe80.eu>2020-09-10 22:28:40 +0200
committerAlexander Couzens <lynxis@fe80.eu>2020-09-11 14:40:47 +0200
commitf74b5cba340b26cf949692f18065f2ffebf5488c (patch)
tree6c6651a1e005999e8109b73a86578a609228ba16
parent4ad3a356f394734f4e36816733a685201ad1f914 (diff)
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
-rw-r--r--bsc/BSC_Tests.ttcn3
1 files changed, 2 insertions, 1 deletions
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);