From 651f38258d72742c5961d646f865316f8ea1823c Mon Sep 17 00:00:00 2001 From: Vadim Chugunov Date: Thu, 22 Aug 2013 20:00:19 -0700 Subject: [PATCH] Disabled broken tests in std::vec. --- src/libstd/vec.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/libstd/vec.rs b/src/libstd/vec.rs index 118e07abed8b2..f196cf423c130 100644 --- a/src/libstd/vec.rs +++ b/src/libstd/vec.rs @@ -3154,6 +3154,7 @@ mod tests { } } + #[ignore] // FIXME #8698 #[test] #[should_fail] fn test_map_fail() { @@ -3168,6 +3169,7 @@ mod tests { }; } + #[ignore] // FIXME #8698 #[test] #[should_fail] fn test_flat_map_fail() { @@ -3182,6 +3184,7 @@ mod tests { }; } + #[ignore] // FIXME #8698 #[test] #[should_fail] fn test_rposition_fail() { @@ -3196,6 +3199,7 @@ mod tests { }; } + #[ignore] // FIXME #8698 #[test] #[should_fail] fn test_permute_fail() {