RSL_Emulation: Stop with error verdict if conn table runs out of space

Change-Id: If1a002da97cf1b66855f2e7a0fe2a54a6428bc81
This commit is contained in:
Daniel Willmann 2018-07-05 17:31:20 +02:00
parent 205a384562
commit 8273fb9ceb
1 changed files with 4 additions and 6 deletions

View File

@ -195,7 +195,7 @@ runs on RSL_Emulation_CT {
return;
}
}
setverdict(fail, "No free entry in conn table for ", ra, fn);
testcase.stop("No free entry in conn table for ", ra, fn);
}
/* create an ew client with given RA and FN */
@ -212,7 +212,7 @@ runs on RSL_Emulation_CT {
return;
}
}
setverdict(fail, "No free entry in conn table for ", trx_nr, chan_nr, comp_ref);
testcase.stop("No free entry in conn table for ", trx_nr, chan_nr, comp_ref);
}
@ -263,8 +263,7 @@ runs on RSL_Emulation_CT {
return;
}
}
setverdict(fail, "No space left in LastActTable to store chan_act for ", chan_nr);
self.stop;
testcase.stop("No space left in LastActTable to store chan_act for ", chan_nr);
}
private function f_lookup_last_act(uint8_t trx_nr, RslChannelNr chan_nr)
@ -275,8 +274,7 @@ runs on RSL_Emulation_CT return RSL_Message {
return LastActTable[i].chan_act;
}
}
setverdict(fail, "No LastActTable entry found for TRX ", trx_nr, " ", chan_nr);
self.stop;
testcase.stop("No LastActTable entry found for TRX ", trx_nr, " ", chan_nr);
}
private function f_last_act_table_init() runs on RSL_Emulation_CT {