Skip to content

Commit

Permalink
nocapture
Browse files Browse the repository at this point in the history
  • Loading branch information
mxinden committed Aug 22, 2024
1 parent 6609cae commit 775b613
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/rust-android-run-tests-on-emulator.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 775b613

Please sign in to comment.