From: Gerald Kunzmann Date: Thu, 30 Jun 2016 08:24:11 +0000 (+0000) Subject: Merge "add timeout handle" X-Git-Tag: colorado.1.0~59 X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=commitdiff_plain;h=d58db71c62c7ba0c067d2980b44319b3a3ff8a5d;hp=d1597560d9ec5e6340604aca25ab055acb2b7e84;p=doctor.git Merge "add timeout handle" --- diff --git a/tests/run.sh b/tests/run.sh index 56bacca7..d7240d24 100755 --- a/tests/run.sh +++ b/tests/run.sh @@ -166,12 +166,17 @@ stop_consumer() { wait_for_vm_launch() { echo "waiting for vm launch..." - while true + count=0 + while [[ ${count} -lt 60 ]] do state=$(nova list | grep " $VM_NAME " | awk '{print $6}') [[ "$state" == "ACTIVE" ]] && return 0 + [[ "$state" == "ERROR" ]] && echo "vm state is ERROR" && exit 1 + count=$(($count+1)) sleep 1 done + echo "ERROR: time out while waiting for vm launch" + exit 1 } inject_failure() {