osmith has uploaded this change for review.

View Change

epdg: TC_concurrent_ues_MTC: rx CMD_ATTACHED without from vc_conn_list[i]

This is needed to make the test pass in QEMU. I think this makes it
accept the COORD_CMD_ATTACHED in any order instead of the order the
COORD_CMD_START were sent beforehand.

Increasing the sleep between the COORD_CMD_START also makes the test
pass in QEMU, but that increases the overall test time significantly in
TC_concurrent_ues100.

Change-Id: I4c76d12273a14df562ea906e6c8ddb348d1b0eda
---
M epdg/EPDG_Tests.ttcn
1 file changed, 1 insertion(+), 1 deletion(-)

git pull ssh://gerrit.osmocom.org:29418/osmo-ttcn3-hacks refs/changes/20/40320/1
diff --git a/epdg/EPDG_Tests.ttcn b/epdg/EPDG_Tests.ttcn
index c8db429..9ca9d82 100644
--- a/epdg/EPDG_Tests.ttcn
+++ b/epdg/EPDG_Tests.ttcn
@@ -1272,7 +1272,7 @@
}

for (var integer i := 0; i < num_ues; i := i + 1) {
- COORD.receive(COORD_CMD_ATTACHED) from vc_conn_list[i];
+ COORD.receive(COORD_CMD_ATTACHED);
}

log("All attached!");

To view, visit change 40320. To unsubscribe, or for help writing mail filters, visit settings.

Gerrit-MessageType: newchange
Gerrit-Project: osmo-ttcn3-hacks
Gerrit-Branch: master
Gerrit-Change-Id: I4c76d12273a14df562ea906e6c8ddb348d1b0eda
Gerrit-Change-Number: 40320
Gerrit-PatchSet: 1
Gerrit-Owner: osmith <osmith@sysmocom.de>