From 800b04d5207e6d5d81c3fa9220b0c6ccd0427fcf Mon Sep 17 00:00:00 2001 From: "David A. Velasco" Date: Mon, 21 Apr 2014 11:14:51 +0200 Subject: [PATCH] Trying to wait more time for the emulator --- wait_for_emulator.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/wait_for_emulator.sh b/wait_for_emulator.sh index 31788387..45b6e596 100644 --- a/wait_for_emulator.sh +++ b/wait_for_emulator.sh @@ -2,16 +2,18 @@ bootanim="" failcounter=0 +checkcounter=0 until [[ "$bootanim" =~ "stopped" ]]; do bootanim=`adb -e shell getprop init.svc.bootanim 2>&1` - echo "$bootanim" + echo "($checkcounter) $bootanim" if [[ "$bootanim" =~ "not found" ]]; then let "failcounter += 1" - if [[ $failcounter -gt 3 ]]; then + if [[ $failcounter -gt 300 ]]; then echo "Failed to start emulator" exit 1 fi fi + let "checkcounter += 1" sleep 1 done echo "Done"