diff --git a/.github/workflows/rust-android-run-tests-on-emulator.sh b/.github/workflows/rust-android-run-tests-on-emulator.sh index bc9c5720f..ce13618ab 100755 --- a/.github/workflows/rust-android-run-tests-on-emulator.sh +++ b/.github/workflows/rust-android-run-tests-on-emulator.sh @@ -7,7 +7,7 @@ while [[ -z "$(adb shell getprop sys.boot_completed | tr -d '\r')" ]]; do sleep any_failures=0 for test in $(find target/$TARGET/debug/deps/ -type f -executable ! -name "*.so" -name "*-*"); do adb push "$test" /data/local/tmp/ - adb shell /data/local/tmp/$(basename "$test") || any_failures=1 + adb shell /data/local/tmp/$(basename "$test") --nocapture || any_failures=1 done exit $any_failures