osmith has submitted this change. ( https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/40477?usp=email )
Change subject: epdg/testenv/run_osmo_epdg…: wait up to 30s ......................................................................
epdg/testenv/run_osmo_epdg…: wait up to 30s
Wait up to 30s for the tun device as waiting 10s is not enough if jenkins is under high load.
Related: https://jenkins.osmocom.org/jenkins/job/ttcn3-epdg-test-net-next/29/console Change-Id: Ia7298275b92f30efc40e9d6afa1abc8d7c5536d6 --- M epdg/testenv/run_osmo_epdg_with_dummy_ue.sh 1 file changed, 1 insertion(+), 1 deletion(-)
Approvals: pespin: Looks good to me, approved Jenkins Builder: Verified
diff --git a/epdg/testenv/run_osmo_epdg_with_dummy_ue.sh b/epdg/testenv/run_osmo_epdg_with_dummy_ue.sh index 439dccc..99d43e8 100755 --- a/epdg/testenv/run_osmo_epdg_with_dummy_ue.sh +++ b/epdg/testenv/run_osmo_epdg_with_dummy_ue.sh @@ -14,7 +14,7 @@ set +x
FOUND=0 -for i in $(seq 1 10); do +for i in $(seq 1 30); do sleep 1 if ip link ls dev "$EPDG_TUN" >/dev/null 2>&1; then FOUND=1