BSC_Tests: Ensure TC_chan_rel_rll_rel_ind terminates with 'fail' not 'error'

This commit is contained in:
Harald Welte 2017-12-10 15:48:52 +01:00
parent 85804d4dd0
commit b291770b7b
1 changed files with 4 additions and 1 deletions

View File

@ -195,7 +195,10 @@ runs on test_CT return RSL_Message {
T.stop;
}
[] IPA_RSL[bts_nr].receive { repeat; }
[] T.timeout { setverdict(fail, "Timeout expecting ", t_rx); }
[] T.timeout {
setverdict(fail, "Timeout expecting ", t_rx);
self.stop;
}
}
return rx_rsl_ud.rsl;
}