diff options
author | mtklein <mtklein@chromium.org> | 2015-01-22 10:43:34 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-01-22 10:43:34 -0800 |
commit | 2d63859f6f3ec237ce28e550e2db554dd492c1e5 (patch) | |
tree | 4d35b393aa25bd9dd9f2fa97238418e5b0a83b9e /platform_tools/android/bin/android_run_skia | |
parent | 8f25c667ea975c92d87ad6cb96963946f9845542 (diff) |
android_run_skia: dump logcat on failure
logcat -c clears the log before we run.
logcat -d dumps the log stdout and exits.
BUG=skia:
Review URL: https://codereview.chromium.org/870643002
Diffstat (limited to 'platform_tools/android/bin/android_run_skia')
-rwxr-xr-x | platform_tools/android/bin/android_run_skia | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/platform_tools/android/bin/android_run_skia b/platform_tools/android/bin/android_run_skia index 81c4fee013..7c69309aa0 100755 --- a/platform_tools/android/bin/android_run_skia +++ b/platform_tools/android/bin/android_run_skia @@ -23,11 +23,13 @@ if [[ -n $RESOURCE_PATH ]]; then adb_push_if_needed "${SKIA_SRC_DIR}/resources" $RESOURCE_PATH fi +if [ $LOGCAT ]; then $ADB $DEVICE_SERIAL logcat -c; fi STATUS_FILENAME="/data/local/tmp/.skia_tmp_$(date +%s%N)" $ADB ${DEVICE_SERIAL} shell \ "LD_LIBRARY_PATH=/data/local/tmp:$LD_LIBRARY_PATH \ /data/local/tmp/skia_launcher ${APP_ARGS[*]}; echo \$? > ${STATUS_FILENAME}" if [ -z "$($ADB $DEVICE_SERIAL shell 'if [ -f $STATUS_FILENAME ]; then echo exists; fi')" ]; then + if [ $LOGCAT ]; then $ADB $DEVICE_SERIAL logcat -d; fi echo "***********************************************************************" echo "The application terminated unexpectedly and did not produce an exit code" echo "***********************************************************************" @@ -39,6 +41,7 @@ $ADB ${DEVICE_SERIAL} shell rm -f ${STATUS_FILENAME} # check to see if the 'cat' command failed and print errors accordingly if [[ ${EXIT_CODE} == *${STATUS_FILENAME}* ]]; then + if [ $LOGCAT ]; then $ADB $DEVICE_SERIAL logcat -d; fi echo "***********************************************************************" echo "ADB failed to retrieve the application's exit code" echo "***********************************************************************" @@ -47,6 +50,7 @@ fi echo "EXIT_CODE is ${EXIT_CODE}" if [ $'0\r' != "${EXIT_CODE}" ]; then + if [ $LOGCAT ]; then $ADB $DEVICE_SERIAL logcat -d; fi exit 1 fi exit 0 |