kiwix-android/contrib/instrumentation.sh

11 lines
270 B
Bash

#!/usr/bin/env bash
adb logcat -c
adb logcat *:E -v color &
if ./gradlew jacocoInstrumentationTestReport; then
echo "jacocoInstrumentationTestReport succeeded" >&2
else
adb exec-out screencap -p >screencap.png
echo "jacocoInstrumentationTestReport failed" >&2
fi