Skip to content

Commit

Permalink
BSC_Test_ASCI: Fix test to seize or release uplink by MSC
Browse files Browse the repository at this point in the history
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
  • Loading branch information
Andreas Eversberg committed Jul 21, 2023
1 parent cfdbb3e commit e150602
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions bsc/BSC_Tests_ASCI.ttcn
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit e150602

Please sign in to comment.