[PATCH] osmo-ttcn3-hacks[master]: bts: new f_rsl_transceive_ret(): like f_rsl_transceive() wit...

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/.

Harald Welte gerrit-no-reply at lists.osmocom.org
Mon Apr 2 16:21:08 UTC 2018


Review at  https://gerrit.osmocom.org/7608

bts: new f_rsl_transceive_ret(): like f_rsl_transceive() with return value

Change-Id: I0cdc6b87566b9d101ecb12a77eac18a50689e088
---
M bts/BTS_Tests.ttcn
1 file changed, 13 insertions(+), 4 deletions(-)


  git pull ssh://gerrit.osmocom.org:29418/osmo-ttcn3-hacks refs/changes/08/7608/1

diff --git a/bts/BTS_Tests.ttcn b/bts/BTS_Tests.ttcn
index ecb5497..b68e99b 100644
--- a/bts/BTS_Tests.ttcn
+++ b/bts/BTS_Tests.ttcn
@@ -393,14 +393,15 @@
 	fn.apply(id);
 }
 
-function f_rsl_transceive(template RSL_Message tx, template RSL_Message exp_rx, charstring id,
-			  boolean ignore_other := false)
-runs on ConnHdlr {
+function f_rsl_transceive_ret(template RSL_Message tx, template RSL_Message exp_rx, charstring id,
+				boolean ignore_other := false)
+runs on ConnHdlr return RSL_Message {
+	var RSL_Message rx;
 	timer T := 3.0;
 	RSL.send(tx);
 	T.start;
 	alt {
-	[] RSL.receive(exp_rx) {
+	[] RSL.receive(exp_rx) -> value rx {
 		T.stop;
 		setverdict(pass);
 		}
@@ -413,9 +414,17 @@
 	[not ignore_other] as_l1_dcch();
 	[not ignore_other] RSL.receive {
 		setverdict(fail, "Unexpected RSL message received");
+		self.stop;
 		}
 	[ignore_other] RSL.receive { repeat; }
 	}
+	return rx;
+}
+
+function f_rsl_transceive(template RSL_Message tx, template RSL_Message exp_rx, charstring id,
+			  boolean ignore_other := false)
+runs on ConnHdlr {
+	var RSL_Message rx := f_rsl_transceive_ret(tx, exp_rx, id, ignore_other);
 }
 
 function f_rsl_chan_act(RSL_IE_ChannelMode mode) runs on ConnHdlr {

-- 
To view, visit https://gerrit.osmocom.org/7608
To unsubscribe, visit https://gerrit.osmocom.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I0cdc6b87566b9d101ecb12a77eac18a50689e088
Gerrit-PatchSet: 1
Gerrit-Project: osmo-ttcn3-hacks
Gerrit-Branch: master
Gerrit-Owner: Harald Welte <laforge at gnumonks.org>



More information about the gerrit-log mailing list