diff options
Diffstat (limited to 'testcases/vPing/CI/libraries/ping.sh')
-rw-r--r-- | testcases/vPing/CI/libraries/ping.sh | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/testcases/vPing/CI/libraries/ping.sh b/testcases/vPing/CI/libraries/ping.sh new file mode 100644 index 000000000..693b86825 --- /dev/null +++ b/testcases/vPing/CI/libraries/ping.sh @@ -0,0 +1,13 @@ +#!/bin/sh + +while true; do + ping -c 1 $1 2>&1 >/dev/null + RES=$? + if [ "Z$RES" = "Z0" ] ; then + echo 'vPing OK' + break + else + echo 'vPing KO' + fi + sleep 1 +done
\ No newline at end of file |