Add trace to CI

This commit is contained in:
Jubilee Young 2021-02-23 19:54:45 -08:00
parent 104154738c
commit 5c07fcfd1c
2 changed files with 2 additions and 1 deletions

View File

@ -121,6 +121,6 @@ else
cargo test $opt --manifest-path libc-test/Cargo.toml --target "${TARGET}"
cargo test $opt --features extra_traits --manifest-path libc-test/Cargo.toml \
RUST_BACKTRACE=1 cargo test $opt --features extra_traits --manifest-path libc-test/Cargo.toml \
--target "${TARGET}"
fi

View File

@ -27,6 +27,7 @@ fn main() {
let output = Command::new("adb")
.arg("shell")
.arg("RUST_BACKTRACE=1")
.arg(&dst)
.output()
.expect("failed to run: adb shell");