aboutsummaryrefslogtreecommitdiffstats
path: root/bsc
diff options
context:
space:
mode:
authorAndreas Eversberg <jolly@eversberg.eu>2023-07-07 12:09:00 +0200
committerlaforge <laforge@osmocom.org>2023-07-12 16:21:44 +0000
commit5e3dd362f6911650395d1dc9a7beb63540aed7e6 (patch)
tree95772bfee7e683e217b6f2b5b21aae88b0f43308 /bsc
parentc0870e5a08df465e2279c41c2807f249a0a57839 (diff)
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
Diffstat (limited to 'bsc')
-rw-r--r--bsc/BSC_Tests_ASCI.ttcn10
1 files changed, 6 insertions, 4 deletions
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!");