jolly has uploaded this change for review. (
https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/33854 )
Change subject: BSC_Test_ASCI: Fix test to seize or release uplink by MSC
......................................................................
BSC_Test_ASCI: Fix test to seize or release uplink by MSC
After sending UPLINK SEIZED COMMAND or UPLINK RELEASE COMMAND the timer
must be startes, to collect data from the outcome of the test. The test
will fail sometimes, if this is not done.
Change-Id: Ic48e9c259b42ee6e030ea5d05b113ce2933e2247
---
M bsc/BSC_Tests_ASCI.ttcn
1 file changed, 15 insertions(+), 0 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-ttcn3-hacks refs/changes/54/33854/1
diff --git a/bsc/BSC_Tests_ASCI.ttcn b/bsc/BSC_Tests_ASCI.ttcn
index b4b0173..e4a0cca 100644
--- a/bsc/BSC_Tests_ASCI.ttcn
+++ b/bsc/BSC_Tests_ASCI.ttcn
@@ -169,10 +169,12 @@
g_pars.asci_test.vgcs_uplink_release) {
log("VGCS: sending Uplink Seized Cmd");
BSSAP.send(ts_BSSMAP_UplinkSeizedCmd(9, omit, omit, omit));
+ T.start;
}
if (g_pars.asci_test.vgcs_uplink_release) {
log("VGCS: sending Uplink Release Cmd");
BSSAP.send(ts_BSSMAP_UplinkRelCmd(9));
+ T.start;
}
if (g_pars.asci_test.vgcs_uplink_seized or
g_pars.asci_test.vgcs_uplink_release) {
--
To view, visit
https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/33854
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-ttcn3-hacks
Gerrit-Branch: master
Gerrit-Change-Id: Ic48e9c259b42ee6e030ea5d05b113ce2933e2247
Gerrit-Change-Number: 33854
Gerrit-PatchSet: 1
Gerrit-Owner: jolly <andreas(a)eversberg.eu>
Gerrit-MessageType: newchange