aboutsummaryrefslogtreecommitdiffstats
path: root/bsc
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2018-01-31 15:56:00 +0100
committerHarald Welte <laforge@gnumonks.org>2018-01-31 18:50:36 +0100
commitbeb9dbc3ee5e6a1bf5e19a5dc9f7a149e65d9e74 (patch)
treebdc712a682d0d0488ec733ac03a791ab8d1ba2a5 /bsc
parent751d3eb19fb0b8041fa6a969fc44ca7c05d07b05 (diff)
bsc: Change expectation in paging tests
When we page an unknown/unsupported CellIdentifier format, OsmoBSC decides to page on all BTSs to be safe. This way we have a chance of making communication happen, rather than breaking it. Change-Id: Ibd0ba986d9e18758b519e852c36f4dbbb6b367ea
Diffstat (limited to 'bsc')
-rw-r--r--bsc/BSC_Tests.ttcn6
1 files changed, 3 insertions, 3 deletions
diff --git a/bsc/BSC_Tests.ttcn b/bsc/BSC_Tests.ttcn
index 467ce4f7..8b44a252 100644
--- a/bsc/BSC_Tests.ttcn
+++ b/bsc/BSC_Tests.ttcn
@@ -1081,21 +1081,21 @@ testcase TC_paging_imsi_nochan_all() runs on test_CT {
testcase TC_paging_imsi_nochan_plmn_lac_rnc() runs on test_CT {
var template BSSMAP_FIELD_CellIdentificationList cid_list;
cid_list := { cIl_PLMN_LAC_RNC := { ts_BSSMAP_CI_PLMN_LAC_RNC(cid.mcc, cid.mnc, cid.lac, 12) } };
- f_pageing_helper('001010000000012'H, cid_list, c_BtsId_none);
+ f_pageing_helper('001010000000012'H, cid_list, c_BtsId_all);
}
/* Paging by RNC */
testcase TC_paging_imsi_nochan_rnc() runs on test_CT {
var template BSSMAP_FIELD_CellIdentificationList cid_list;
cid_list := { cIl_RNC := { int2oct(13, 2) } };
- f_pageing_helper('001010000000013'H, cid_list, c_BtsId_none);
+ f_pageing_helper('001010000000013'H, cid_list, c_BtsId_all);
}
/* Paging by LAC+RNC */
testcase TC_paging_imsi_nochan_lac_rnc() runs on test_CT {
var template BSSMAP_FIELD_CellIdentificationList cid_list;
cid_list := { cIl_LAC_RNC := { ts_BSSMAP_CI_LAC_RNC(cid.lac, 14) } };
- f_pageing_helper('001010000000014'H, cid_list, c_BtsId_none);
+ f_pageing_helper('001010000000014'H, cid_list, c_BtsId_all);
}
/* Paging on multiple cells (multiple entries in list): Verify all of them page */