aboutsummaryrefslogtreecommitdiffstats
path: root/bsc
diff options
context:
space:
mode:
authorPhilipp Maier <pmaier@sysmocom.de>2018-11-12 12:03:26 +0100
committerHarald Welte <laforge@gnumonks.org>2018-12-08 19:33:29 +0000
commit4dae065057f96f991bc63a23f5247fa74e206c53 (patch)
treeb50fb4f37f7293148a9ed63c9c514189f883321f /bsc
parent5ee6f6c08b7ba7c45eb4e6ca9fa602b2830bc180 (diff)
BSC_Tests: expect a HANDOVER PERFORMED message on internal handover
When an internal handover is performed, the BSC is expected to inform the MSC about the event by sending a BSSMAP HANDOVER PERFORMED message. This feature was missing in the BSC and has now been added. The tests need to be upgraded in order to handle the additional message. - Upgrade f_tc_ho_int so that it expects a HANDOVER PERFORMED message Change-Id: I10f4e578c96a90317939ba49b61b14a3c7e488a7 Depends: osmo-bsc If26e5807280e0f75a423b3b04f8e3c698c82a351 Related: OS#3645
Diffstat (limited to 'bsc')
-rw-r--r--bsc/BSC_Tests.ttcn4
1 files changed, 4 insertions, 0 deletions
diff --git a/bsc/BSC_Tests.ttcn b/bsc/BSC_Tests.ttcn
index 81cf23e5..aaa45807 100644
--- a/bsc/BSC_Tests.ttcn
+++ b/bsc/BSC_Tests.ttcn
@@ -2256,6 +2256,10 @@ private function f_tc_ho_int(charstring id) runs on MSC_ConnHdlr {
[] as_handover(hs);
}
+ /* Since this is an internal handover we expect the BSC to inform the
+ * MSC about the event */
+ BSSAP.receive(tr_BSSMAP_HandoverPerformed);
+
/* Check the amount of MGCP transactions is still consistant with the
* test expectation */
f_check_mgcp_expectations()