osmith has submitted this change. ( https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/40320?usp=email )
Change subject: epdg: TC_concurrent_ues_MTC: rx CMD_ATTACHED without from vc_conn_list[i] ......................................................................
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, 2 insertions(+), 2 deletions(-)
Approvals: fixeria: Looks good to me, approved Jenkins Builder: Verified pespin: Looks good to me, but someone else must approve
diff --git a/epdg/EPDG_Tests.ttcn b/epdg/EPDG_Tests.ttcn index 2fcbcb3..61476e2 100644 --- a/epdg/EPDG_Tests.ttcn +++ b/epdg/EPDG_Tests.ttcn @@ -1263,7 +1263,7 @@ }
for (var integer i := 0; i < num_ues; i := i + 1) { - COORD.receive(COORD_CMD_READY) from vc_conn_list[i]; + COORD.receive(COORD_CMD_READY); }
for (var integer i := 0; i < num_ues; i := i + 1) { @@ -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!");