Pau Espin Pedrol has uploaded this change for review. (
https://gerrit.osmocom.org/11429
Change subject: RSL_Emulation: handle ASP_IPA_EVENT_DOWN
......................................................................
RSL_Emulation: handle ASP_IPA_EVENT_DOWN
Otherwise RSL layer fails this way when this event is received:
RSL_Emulation.ttcn:429 Receive operation on port IPA_PT succeeded, message from
TC_chan_act_a51-RSL-IPA(3): @IPA_Emulation.ASP_IPA_Event: { up_down :=
ASP_IPA_EVENT_DOWN (0) } id 9
- Function main_client was stopped. PTC terminates.
RSL_Emulation.ttcn:429 Message with id 9 was extracted from the queue of IPA_PT.
RSL_Emulation.ttcn:430 setverdict(fail): none -> fail reason: "Received unknown
primitive from IPA", new component reason: "Received unknown primitive from IPA"
Change-Id: Idc6565c9de72d98015d56a41e5616c46051c8a8d
---
M library/RSL_Emulation.ttcn
1 file changed, 5 insertions(+), 0 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-ttcn3-hacks
refs/changes/29/11429/1
diff --git a/library/RSL_Emulation.ttcn b/library/RSL_Emulation.ttcn
index c56c278..57efcc1 100644
--- a/library/RSL_Emulation.ttcn
+++ b/library/RSL_Emulation.ttcn
@@ -346,6 +346,11 @@
[not bts_role] IPA_PT.receive(ASP_IPA_Event:{up_down :=
ASP_IPA_EVENT_UP}) -> value evt {
CCHAN_PT.send(evt);
}
+ [bts_role] IPA_PT.receive(ASP_IPA_Event:{up_down :=
ASP_IPA_EVENT_DOWN}) {
+ }
+ [not bts_role] IPA_PT.receive(ASP_IPA_Event:{up_down :=
ASP_IPA_EVENT_DOWN}) -> value evt {
+ CCHAN_PT.send(evt);
+ }
[bts_role] IPA_PT.receive(ASP_IPA_Event:{up_down :=
ASP_IPA_EVENT_ID_ACK}) {
IPA_PT.send(ts_ASP_RSL_UD(IPAC_PROTO_RSL_TRX0,ts_RSL_PAGING_LOAD_IND(23)));
}
--
To view, visit https://gerrit.osmocom.org/11429
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: Idc6565c9de72d98015d56a41e5616c46051c8a8d
Gerrit-Change-Number: 11429
Gerrit-PatchSet: 1
Gerrit-Owner: Pau Espin Pedrol <[email protected]>