pcu: Add missing f_shutdown() to exit as soon as possible without final=true

Change-Id: I9703f7c81a98b6ef826db48c107ee833c125e5cc
This commit is contained in:
Pau Espin 2020-05-22 14:41:14 +02:00 committed by Vadim Yanitskiy
parent 6791eb6b93
commit 1617e31001
1 changed files with 3 additions and 0 deletions

View File

@ -607,6 +607,7 @@ testcase TC_cs_lqual_ul_tbf() runs on RAW_PCU_Test_CT {
if (not match(dl_block.ctrl.payload.u.ul_ack_nack.gprs.ch_coding_cmd, ch_coding)) {
setverdict(fail, "Channel Coding does not match our expectations: ", ch_coding);
f_shutdown(__BFILE__, __LINE__);
}
}
@ -682,6 +683,7 @@ testcase TC_cs_initial_ul() runs on RAW_PCU_Test_CT {
if (last_ch_coding != CH_CODING_CS1) {
setverdict(fail, "Channel Coding does not match our expectations (CS-1): ", last_ch_coding);
f_shutdown(__BFILE__, __LINE__);
}
f_shutdown(__BFILE__, __LINE__, final := true);
@ -726,6 +728,7 @@ testcase TC_cs_max_ul() runs on RAW_PCU_Test_CT {
if (last_ch_coding != CH_CODING_CS3) {
setverdict(fail, "Channel Coding does not match our expectations (CS-3): ", last_ch_coding);
f_shutdown(__BFILE__, __LINE__);
}
f_shutdown(__BFILE__, __LINE__, final := true);