aboutsummaryrefslogtreecommitdiff
path: root/android-interop-testing/wait-for-emulator.sh
blob: 14402d1fdb67e45f4d9c76cfdafb1f13a4df8cec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/bash
echo "Waiting for emulator to start..."

bootanim=""
failcounter=0
until [[ "$bootanim" =~ "stopped" ]]; do
   bootanim=`adb -e shell getprop init.svc.bootanim 2>&1`
   let "failcounter += 1"
   # Timeout after 5 minutes.
   if [[ $failcounter -gt 300 ]]; then
      echo "Can not find device after 5 minutes..."
      exit 1
   fi
   sleep 1
done