about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2015-03-25 21:29:50 +0000
committerbors <bors@rust-lang.org>2015-03-25 21:29:50 +0000
commit27901849e07558639b8decc03707e0317ae8280e (patch)
tree74163d4fe4b8dc8d26df2c0336f4be98d060ad32 /src/libstd
parenta3b13610c5b93d9ada072471a001a5613df6a960 (diff)
parentc66a2b7393afe332ee8bf6aba985e4fdd253cf54 (diff)
downloadrust-27901849e07558639b8decc03707e0317ae8280e.tar.gz
rust-27901849e07558639b8decc03707e0317ae8280e.zip
Auto merge of #23695 - sae-bom:mac-android-debuginfo, r=alexcrichton
1. when mac-android cross compile and make-check , make it use gdb instead of lldb so as to it passes debuginfo tests.
2. ignore some tests on aarch64
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/process.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libstd/process.rs b/src/libstd/process.rs
index 553412c8371..6a36ecefcf4 100644
--- a/src/libstd/process.rs
+++ b/src/libstd/process.rs
@@ -748,6 +748,7 @@ mod tests {
         cmd
     }
 
+    #[cfg(not(target_arch = "aarch64"))]
     #[test]
     fn test_keep_current_working_dir() {
         use os;