mirror of
https://github.com/kiwix/kiwix-android.git
synced 2025-08-03 10:46:53 -04:00
11 lines
227 B
Bash
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
|