daniel has uploaded this change for review. ( https://gerrit.osmocom.org/9903
Change subject: RSL_Emulation: Stop with error verdict if conn table runs out
of space
......................................................................
RSL_Emulation: Stop with error verdict if conn table runs out of space
Change-Id: If1a002da97cf1b66855f2e7a0fe2a54a6428bc81
---
M library/RSL_Emulation.ttcn
1 file changed, 4 insertions(+), 6 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-ttcn3-hacks
refs/changes/03/9903/1
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 {
--
To view, visit https://gerrit.osmocom.org/9903
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-ttcn3-hacks
Gerrit-Branch: master
Gerrit-MessageType: newchange
Gerrit-Change-Id: If1a002da97cf1b66855f2e7a0fe2a54a6428bc81
Gerrit-Change-Number: 9903
Gerrit-PatchSet: 1
Gerrit-Owner: daniel <[email protected]>