blob: f0b75c762981f6dc3c13791e3d93a33969ff5839 [file] [log] [blame]
#!/bin/bash
bootanim=""
failcounter=0
until [[ "$bootanim" =~ "stopped" ]]; do
bootanim=`adb -e shell getprop init.svc.bootanim 2>&1`
echo "$bootanim"
if [[ "$bootanim" =~ "not found" ]]; then
let "failcounter += 1"
if [[ $failcounter -gt 6 ]]; then
echo "Failed to start emulator"
exit 1
fi
fi
sleep 10
done
echo "Done"