This is merely a historical archive of years 2008-2021, before the migration to mailman3.
A maintained and still updated list archive can be found at https://lists.osmocom.org/hyperkitty/list/gerrit-log@lists.osmocom.org/.
Vadim Yanitskiy gerrit-no-reply at lists.osmocom.orgVadim Yanitskiy has uploaded this change for review. ( https://gerrit.osmocom.org/11224
Change subject: BTS_Tests.ttcn: fix: properly detect RSL_MEAS_RES messages
......................................................................
BTS_Tests.ttcn: fix: properly detect RSL_MEAS_RES messages
Change-Id: Iea5ee868ede8bfe1e2b1cbf5abcbf2844d3fe9a4
---
M bts/BTS_Tests.ttcn
1 file changed, 4 insertions(+), 4 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-ttcn3-hacks refs/changes/24/11224/1
diff --git a/bts/BTS_Tests.ttcn b/bts/BTS_Tests.ttcn
index fe59fd3..4c1c193 100644
--- a/bts/BTS_Tests.ttcn
+++ b/bts/BTS_Tests.ttcn
@@ -3734,11 +3734,11 @@
}
}
-/* Expect (or not expect) SACCH messages (Measurement Reports) */
+/* Expect (or not expect) RSL_MEAS_RES messages (Measurement Reports) */
private altstep as_rsl_sacch_ind(boolean exp_sacch) runs on ConnHdlr {
- [exp_sacch] RSL.receive(tr_RSL_UNITDATA_IND(g_chan_nr, tr_RslLinkID_SACCH(?))) { repeat; }
- [not exp_sacch] RSL.receive(tr_RSL_UNITDATA_IND(g_chan_nr, tr_RslLinkID_SACCH(?))) {
- setverdict(fail, "Unexpected (SACCH) UNIT_DATA_IND message!");
+ [exp_sacch] RSL.receive(tr_RSL_MEAS_RES(g_chan_nr)) { repeat; }
+ [not exp_sacch] RSL.receive(tr_RSL_MEAS_RES(g_chan_nr)) {
+ setverdict(fail, "Unexpected RSL_MEAS_RES message!");
mtc.stop;
}
}
--
To view, visit https://gerrit.osmocom.org/11224
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: Iea5ee868ede8bfe1e2b1cbf5abcbf2844d3fe9a4
Gerrit-Change-Number: 11224
Gerrit-PatchSet: 1
Gerrit-Owner: Vadim Yanitskiy <axilirator at gmail.com>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.osmocom.org/pipermail/gerrit-log/attachments/20181004/24efa1a4/attachment.htm>