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 started, in order to collect data from the outcome of the test.
The test will fail sometimes, if this is not done.

Change-Id: Ic48e9c259b42ee6e030ea5d05b113ce2933e2247
This commit is contained in:
Andreas Eversberg 2023-07-20 18:08:33 +02:00
parent cfdbb3ef65
commit e15060252d
1 changed files with 2 additions and 0 deletions

View File

@ -169,10 +169,12 @@ private function f_tc_vgcs_vbs_setup(charstring id) runs on MSC_ConnHdlr {
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) {