fixeria has uploaded this change for review. ( 
https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/36471?usp=email )


Change subject: msc: as_{iu_release,clear_cmd}_compl_disc: remove no-op timer 
arguments
......................................................................

msc: as_{iu_release,clear_cmd}_compl_disc: remove no-op timer arguments

Change-Id: I1d3dcf4399dccd353702e4d6c53fe8e26e16ea9b
---
M library/RAN_Emulation.ttcnpp
M msc/BSC_ConnectionHandler.ttcn
2 files changed, 13 insertions(+), 4 deletions(-)



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

diff --git a/library/RAN_Emulation.ttcnpp b/library/RAN_Emulation.ttcnpp
index 25727f3..5b2f190 100644
--- a/library/RAN_Emulation.ttcnpp
+++ b/library/RAN_Emulation.ttcnpp
@@ -1552,7 +1552,7 @@

 #ifdef RAN_EMULATION_RANAP
 /* expect a IuReleaseCommand; Confirm that; expect SCCP-level N-DISCONNET.ind 
*/
-altstep as_iu_release_compl_disc(float t := 5.0) runs on RAN_ConnHdlr {
+altstep as_iu_release_compl_disc() runs on RAN_ConnHdlr {
        var RANAP_PDU ranap;
        [] BSSAP.receive(tr_RANAP_IuReleaseCommand(?)) {
                BSSAP.send(ts_RANAP_IuReleaseComplete);
diff --git a/msc/BSC_ConnectionHandler.ttcn b/msc/BSC_ConnectionHandler.ttcn
index b3d915c..0a30114 100644
--- a/msc/BSC_ConnectionHandler.ttcn
+++ b/msc/BSC_ConnectionHandler.ttcn
@@ -1967,7 +1967,7 @@
 }

 /* expect a clear command */
-altstep as_clear_cmd_compl_disc(float t := 5.0) runs on BSC_ConnHdlr {
+altstep as_clear_cmd_compl_disc() runs on BSC_ConnHdlr {
        var PDU_BSSAP bssap;
        [] BSSAP.receive(tr_BSSMAP_ClearCommand) {
                BSSAP.send(ts_BSSMAP_ClearComplete);
@@ -1992,8 +1992,8 @@

        T.start;
        alt {
-       [g_pars.ran_is_geran] as_clear_cmd_compl_disc(t) { }
-       [not g_pars.ran_is_geran] as_iu_release_compl_disc(t) { }
+       [g_pars.ran_is_geran] as_clear_cmd_compl_disc() { }
+       [not g_pars.ran_is_geran] as_iu_release_compl_disc() { }
        [] T.timeout {
                setverdict(fail, "Timeout waiting for ClearCommand/Release");
                mtc.stop;

--
To view, visit https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/36471?usp=email
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: osmo-ttcn3-hacks
Gerrit-Branch: master
Gerrit-Change-Id: I1d3dcf4399dccd353702e4d6c53fe8e26e16ea9b
Gerrit-Change-Number: 36471
Gerrit-PatchSet: 1
Gerrit-Owner: fixeria <vyanits...@sysmocom.de>
Gerrit-MessageType: newchange

Reply via email to