aboutsummaryrefslogtreecommitdiffhomepage
path: root/platform_tools
diff options
context:
space:
mode:
authorGravatar commit-bot@chromium.org <commit-bot@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81>2014-03-20 19:48:16 +0000
committerGravatar commit-bot@chromium.org <commit-bot@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81>2014-03-20 19:48:16 +0000
commit662af2930723adb89ae9c57a122c39702789821a (patch)
tree9495e25d3cd0d7388e91d06b389098c9ea338d8a /platform_tools
parent89351ec35a05eaf59edb7431d23a754cd084a363 (diff)
android_run_skia: fix error check
(SkipBuildbotRuns) BUG=skia:2313 NOTREECHECKS=True NOTRY=True R=borenet@google.com Author: epoger@google.com Review URL: https://codereview.chromium.org/204713003 git-svn-id: http://skia.googlecode.com/svn/trunk@13881 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'platform_tools')
-rwxr-xr-xplatform_tools/android/bin/android_run_skia2
1 files changed, 1 insertions, 1 deletions
diff --git a/platform_tools/android/bin/android_run_skia b/platform_tools/android/bin/android_run_skia
index 3c74872571..6e303ec430 100755
--- a/platform_tools/android/bin/android_run_skia
+++ b/platform_tools/android/bin/android_run_skia
@@ -42,7 +42,7 @@ fi
EXIT_CODE=`$ADB ${DEVICE_SERIAL} shell cat ${STATUS_FILENAME}`
$ADB ${DEVICE_SERIAL} shell rm ${STATUS_FILENAME}
echo "EXIT_CODE is [${EXIT_CODE}]"
-if [ $'0\r' != ${EXIT_CODE} ]; then
+if [ $'0\r' != "${EXIT_CODE}" ]; then
exit 1
fi
exit 0