Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(905)

Side by Side Diff: platform_tools/android/bin/adb_wait_for_device

Issue 1522013002: Add minimum battery level to adb_wait_for_device (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Remove unnecessary line Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/bin/bash 1 #!/bin/bash
2 # 2 #
3 # Wait for the device to be both attached and booted. 3 # Wait for the device to be ready to run tests.
4 4
5 SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" 5 SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
6 source $SCRIPT_DIR/android_setup.sh 6 source $SCRIPT_DIR/android_setup.sh
7 source $SCRIPT_DIR/utils/setup_adb.sh 7 source $SCRIPT_DIR/utils/setup_adb.sh
8 8
9 function get_battery_level {
10 STATS="$($ADB $DEVICE_SERIAL shell dumpsys batteryproperties)"
11 SPLIT=( $STATS )
12 for i in "${!SPLIT[@]}"; do
13 if [ "${SPLIT[$i]}" = "level:" ]; then
14 echo "${SPLIT[$i+1]}"
15 return
16 fi
17 done
18 echo "Could not determine battery level!" 1>&2
19 echo "0"
20 }
21
9 set -e 22 set -e
10 set -x
11 23
24 # Wait for the device to be connected and fully booted.
12 while [ "$($ADB $DEVICE_SERIAL shell getprop sys.boot_completed | tr -d '\r')" ! = "1" ]; do 25 while [ "$($ADB $DEVICE_SERIAL shell getprop sys.boot_completed | tr -d '\r')" ! = "1" ]; do
26 echo "Waiting for the device to be connected and ready."
13 sleep 5 27 sleep 5
14 done 28 done
29
30 # Wait for battery charge.
31 DESIRED_BATTERY_LEVEL=30
32 CURRENT_BATTERY_LEVEL="$(get_battery_level)"
33 while [ "${CURRENT_BATTERY_LEVEL}" -lt "${DESIRED_BATTERY_LEVEL}" ]; do
34 echo "Battery level is ${CURRENT_BATTERY_LEVEL}; waiting to charge to ${DESIRE D_BATTERY_LEVEL}"
35 sleep 5
36 CURRENT_BATTERY_LEVEL="$(get_battery_level)"
37 done
38
39 echo "Ready!"
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698