From c66a2b7393afe332ee8bf6aba985e4fdd253cf54 Mon Sep 17 00:00:00 2001 From: Sae-bom Kim Date: Wed, 25 Mar 2015 18:17:33 +0900 Subject: [PATCH] Ignore some tests on aarch64 --- src/libstd/process.rs | 1 + src/test/debuginfo/c-style-enum.rs | 1 + src/test/debuginfo/issue12886.rs | 3 ++- src/test/run-pass/sigpipe-should-be-ignored.rs | 1 + 4 files changed, 5 insertions(+), 1 deletion(-) 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; diff --git a/src/test/debuginfo/c-style-enum.rs b/src/test/debuginfo/c-style-enum.rs index 2305d7bc5c2..766105881ce 100644 --- a/src/test/debuginfo/c-style-enum.rs +++ b/src/test/debuginfo/c-style-enum.rs @@ -8,6 +8,7 @@ // option. This file may not be copied, modified, or distributed // except according to those terms. +// ignore-aarch64 // min-lldb-version: 310 // compile-flags:-g diff --git a/src/test/debuginfo/issue12886.rs b/src/test/debuginfo/issue12886.rs index 424ba50e3c9..3c2e7f10d16 100644 --- a/src/test/debuginfo/issue12886.rs +++ b/src/test/debuginfo/issue12886.rs @@ -10,12 +10,13 @@ // ignore-windows failing on 64-bit bots FIXME #17638 // ignore-lldb +// ignore-aarch64 // compile-flags:-g // gdb-command:run // gdb-command:next -// gdb-check:[...]33[...]s +// gdb-check:[...]34[...]s // gdb-command:continue #![omit_gdb_pretty_printer_section] diff --git a/src/test/run-pass/sigpipe-should-be-ignored.rs b/src/test/run-pass/sigpipe-should-be-ignored.rs index b81d0f2407b..4a05b487ae2 100644 --- a/src/test/run-pass/sigpipe-should-be-ignored.rs +++ b/src/test/run-pass/sigpipe-should-be-ignored.rs @@ -11,6 +11,7 @@ // Be sure that when a SIGPIPE would have been received that the entire process // doesn't die in a ball of fire, but rather it's gracefully handled. +// ignore-aarch64 // pretty-expanded FIXME #23616 use std::env;