Skip to content

Commit

Permalink
debug instead of trace
Browse files Browse the repository at this point in the history
  • Loading branch information
mxinden committed Aug 22, 2024
1 parent 99fdd2c commit 4d3cc97
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 RUST_LOG=trace /data/local/tmp/$(basename "$test") --nocapture || any_failures=1
adb shell RUST_LOG=debug /data/local/tmp/$(basename "$test") --nocapture || any_failures=1
done

exit $any_failures

0 comments on commit 4d3cc97

Please sign in to comment.