diff options
-rwxr-xr-x | ci/run.sh | 2 | ||||
-rw-r--r-- | ci/runtest-android.rs | 1 |
2 files changed, 2 insertions, 1 deletions
@@ -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 diff --git a/ci/runtest-android.rs b/ci/runtest-android.rs index b8030c41a7..e14dba322c 100644 --- a/ci/runtest-android.rs +++ b/ci/runtest-android.rs @@ -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"); |