aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVadim Yanitskiy <vyanitskiy@sysmocom.de>2022-01-20 18:53:15 +0600
committerVadim Yanitskiy <vyanitskiy@sysmocom.de>2022-01-20 19:33:30 +0600
commit5313af9c40da3b5632552ea54a1a90566927510d (patch)
treeb8d4a65535498a173b41986c6d489116948944b8
parent2803cd3d7d596614a4d46154a8cf836b5d5fb111 (diff)
library/GTPv2_Emulation: fix timer not being started in f_uecups_xceive()
This change fixes the following error: Dynamic test case error: None of the branches can be chosen in the alt statement in file GTPv2_Emulation.ttcn between lines 362 and 370. which may happen when osmo-uecups-daemon fails to create a tunnel due to insufficient permissions. Change-Id: Icb229aed7fa9dedcf999837ec6ad249ab4fdebb7 Related: SYS#5602
-rw-r--r--library/GTPv2_Emulation.ttcn1
1 files changed, 1 insertions, 0 deletions
diff --git a/library/GTPv2_Emulation.ttcn b/library/GTPv2_Emulation.ttcn
index 80742694..f07afcb1 100644
--- a/library/GTPv2_Emulation.ttcn
+++ b/library/GTPv2_Emulation.ttcn
@@ -359,6 +359,7 @@ runs on GTPv2_Emulation_CT return PDU_UECUPS {
var UECUPS_RecvFrom mrf;
UECUPS.send(t_UECUPS_Send(g_uecups_conn_id, tx));
+ T.start;
alt {
[] UECUPS.receive(tr_UECUPS_RecvFrom_R(rx_t)) -> value mrf { }
[] UECUPS.receive(tr_SctpAssocChange) { repeat; }