From 8273fb9ceb65260899b470c474cd7cd5df62dfaa Mon Sep 17 00:00:00 2001 From: Daniel Willmann Date: Thu, 5 Jul 2018 17:31:20 +0200 Subject: RSL_Emulation: Stop with error verdict if conn table runs out of space Change-Id: If1a002da97cf1b66855f2e7a0fe2a54a6428bc81 --- library/RSL_Emulation.ttcn | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) (limited to 'library') diff --git a/library/RSL_Emulation.ttcn b/library/RSL_Emulation.ttcn index 119a9be3..325f22e9 100644 --- a/library/RSL_Emulation.ttcn +++ b/library/RSL_Emulation.ttcn @@ -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 { -- cgit v1.2.3