osmith has submitted this change. ( https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/40476?usp=email )
Change subject: epdg/testenv/run_osmo_epdg…: fix ip link ls output ......................................................................
epdg/testenv/run_osmo_epdg…: fix ip link ls output
In the code that waits until the tun device is available, fix the silencing of stdout and stderr.
Change-Id: I8ce8824930e8841dddd7a67d178d5140e4f71b84 --- M epdg/testenv/run_osmo_epdg_with_dummy_ue.sh 1 file changed, 1 insertion(+), 1 deletion(-)
Approvals: Jenkins Builder: Verified pespin: Looks good to me, approved
diff --git a/epdg/testenv/run_osmo_epdg_with_dummy_ue.sh b/epdg/testenv/run_osmo_epdg_with_dummy_ue.sh index 93853b8..439dccc 100755 --- a/epdg/testenv/run_osmo_epdg_with_dummy_ue.sh +++ b/epdg/testenv/run_osmo_epdg_with_dummy_ue.sh @@ -16,7 +16,7 @@ FOUND=0 for i in $(seq 1 10); do sleep 1 - if ip link ls dev "$EPDG_TUN" 2>&1 >/dev/null; then + if ip link ls dev "$EPDG_TUN" >/dev/null 2>&1; then FOUND=1 break fi