Check for empty output in adb_wait_for_charge.

Example error in https://chromium-swarm.appspot.com/user/task/2f96d6439584e411

BUG=skia:
GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=2105813003

Review-Url: https://codereview.chromium.org/2105813003
This commit is contained in:
benjaminwagner 2016-06-29 07:02:54 -07:00 committed by Commit bot
parent 44fbc79e06
commit d48e5b8640

View File

@ -54,7 +54,7 @@ function get_battery_level {
STATS="$($ADB $DEVICE_SERIAL shell dumpsys battery)"
SPLIT=( $STATS )
RV="$(_parse_battery_level ${SPLIT[@]})"
if [ "$RV" != "-1" ]; then
if [ -n "$RV" ] && [ "$RV" != "-1" ]; then
echo "$RV"
return
fi