bsc: f_TC_cm_serv_rej: tweak f_sleep()ing

Make the test more stable by sleeping a bit before stopping all
components. Also reduce the f_sleep(3.0), an accidental leftover from
initial debugging.

Related: SYS#4878
Change-Id: I005af13baac4bca2a431b09b2a6bbfe7077342e0
This commit is contained in:
Neels Hofmeyr 2021-11-16 15:56:45 +01:00 committed by neels
parent 59aa109194
commit 87a6561f8b
1 changed files with 2 additions and 1 deletions

View File

@ -10386,7 +10386,7 @@ private function f_TC_cm_serv_rej(charstring id) runs on MSC_ConnHdlr
{
f_create_chan_and_exp();
BSSAP.send(ts_PDU_DTAP_MT(ts_CM_SERV_REJ('02'O), '00'O));
f_sleep(3.0);
f_sleep(1.0);
}
testcase TC_cm_serv_rej() runs on test_CT {
var TestHdlrParams pars := f_gen_test_hdlr_pars();
@ -10404,6 +10404,7 @@ testcase TC_cm_serv_rej() runs on test_CT {
f_ctrs_bts_add(0, "cm_serv_rej:imsi_unknown_in_hlr", 1);
f_ctrs_bts_verify();
f_sleep(1.0);
f_shutdown_helper();
}