kiwix-android/contrib/instrumentation.sh

11 lines
227 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
exit 1
fi