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

Change-Id: If1a002da97cf1b66855f2e7a0fe2a54a6428bc81
diff --git a/library/RSL_Emulation.ttcn b/library/RSL_Emulation.ttcn
index 119a9be..325f22e 100644
--- a/library/RSL_Emulation.ttcn
+++ b/library/RSL_Emulation.ttcn
@@ -195,7 +195,7 @@
 			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 @@
 			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 @@
 			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 @@
 			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 {