From 5e3dd362f6911650395d1dc9a7beb63540aed7e6 Mon Sep 17 00:00:00 2001 From: Andreas Eversberg Date: Fri, 7 Jul 2023 12:09:00 +0200 Subject: BSC_Tests_ASCI: Do not expect UPLINK BUSY message There is no UPLINK BUSY message sent by BSC, if the talker requests/establishes the uplink. Due to timing reason, the message is sent by the BTS itself towards the MS. Change-Id: I2e3b866eca174ae212ea986980d508e48e31fa57 --- bsc/BSC_Tests_ASCI.ttcn | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'bsc') diff --git a/bsc/BSC_Tests_ASCI.ttcn b/bsc/BSC_Tests_ASCI.ttcn index e72c0654..bfc66a92 100644 --- a/bsc/BSC_Tests_ASCI.ttcn +++ b/bsc/BSC_Tests_ASCI.ttcn @@ -213,8 +213,9 @@ private function f_tc_vgcs_vbs_setup(charstring id) runs on MSC_ConnHdlr { setverdict(fail, "VGCS: No uplink request as expected!"); return; } - if (not uplink_busy) { - setverdict(fail, "VGCS: Uplink not busy as expected!"); + /* UPLINK BUSY is automatically sent by BTS, but not by BSC. */ + if (uplink_busy) { + setverdict(fail, "VGCS: Uplink set to busy, this is not expected!"); return; } log("VGCS: Uplink requested and uplink marked busy as expected!"); @@ -226,8 +227,9 @@ private function f_tc_vgcs_vbs_setup(charstring id) runs on MSC_ConnHdlr { setverdict(fail, "VGCS: No uplink request confirm as expected!"); return; } - if (not uplink_busy) { - setverdict(fail, "VGCS: Uplink not busy as expected!"); + /* UPLINK BUSY is automatically sent by BTS, but not by BSC. */ + if (uplink_busy) { + setverdict(fail, "VGCS: Uplink set to busy, this is not expected!"); return; } log("VGCS: Uplink established and uplink marked busy as expected!"); -- cgit v1.2.3