From 917ee7e5b1fef1916e382b237b11b4df7ce0e97d Mon Sep 17 00:00:00 2001 From: Brian Anderson Date: Mon, 26 Nov 2012 14:48:48 -0800 Subject: [PATCH] Ignore two failure tests on windows --- src/libcore/vec.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/libcore/vec.rs b/src/libcore/vec.rs index 7ea63ae40a2b..087ce42b28a5 100644 --- a/src/libcore/vec.rs +++ b/src/libcore/vec.rs @@ -2983,6 +2983,7 @@ mod tests { } #[test] + #[ignore(cfg(windows))] #[should_fail] fn test_insert_oob() { let mut a = ~[1, 2, 3]; @@ -3005,6 +3006,7 @@ mod tests { } #[test] + #[ignore(cfg(windows))] #[should_fail] fn test_remove_oob() { let mut a = ~[1, 2, 3];