ba1602896d
`tools/skqp/docker_run_apk.sh` executes SkQP tests in an emulator `tools/skqp/run_apk.sh` is used by `docker_run_apk.sh` and `tools/skqp/test_apk.sh` to factor out common code. Also: `bin/sysopen` now pipes output to `/dev/null` and doesn't block. TODO: harmonize with test code executed by bots in `infra/skqp/`. No-Try: true Change-Id: Ia212a84565ff52279a845e20372a0ad7cc0726a4 Reviewed-on: https://skia-review.googlesource.com/c/skia/+/209401 Reviewed-by: Hal Canary <halcanary@google.com> Commit-Queue: Hal Canary <halcanary@google.com>
40 lines
940 B
Bash
40 lines
940 B
Bash
#! /bin/sh
|
|
# Copyright 2019 Google LLC.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
# Note:
|
|
# The ANDROID_SERIAL, SKQP_ARGS, and SKQP_SLEEP environment variables affect
|
|
# this script.
|
|
|
|
if ! [ -f "$1" ] || ! [ -d "$2" ] ; then
|
|
echo "Usage: $0 SKQP_APK_FILE_PATH RESULTS_DIRECTORY" >&2
|
|
exit 1
|
|
fi
|
|
|
|
SED_CMD='s/^.* org.skia.skqp: output written to "\([^"]*\)".*$/\1/p'
|
|
APK="$1"
|
|
DST="$2"
|
|
|
|
printf '\n\nAPK = "%s"\nDST = "%s"\n\n' "$APK" "$DST"
|
|
|
|
set -x
|
|
|
|
timeout 60 adb wait-for-device || exit 1
|
|
|
|
sleep ${SKQP_SLEEP:-0}
|
|
|
|
adb uninstall org.skia.skqp > /dev/null 2>&1
|
|
|
|
adb install "$APK" || exit 1
|
|
|
|
adb logcat -c
|
|
|
|
adb shell am instrument $SKQP_ARGS -w org.skia.skqp 2>&1 | tee "$DST"/stdout
|
|
|
|
adb logcat -d TestRunner org.skia.skqp skia DEBUG '*:S' > "$DST"/logcat
|
|
|
|
ODIR="$(sed -n "$SED_CMD" "$DST"/logcat | head -1)"
|
|
|
|
if adb shell "test -d '$ODIR'"; then adb pull "$ODIR" "$DST"; fi
|