diff options
| author | Brian Anderson <banderson@mozilla.com> | 2012-11-26 14:48:48 -0800 |
|---|---|---|
| committer | Brian Anderson <banderson@mozilla.com> | 2012-11-26 14:48:48 -0800 |
| commit | 917ee7e5b1fef1916e382b237b11b4df7ce0e97d (patch) | |
| tree | 21f85b75fad5256afda9e45415248c48301e4957 | |
| parent | 9f290b56695a24970552e61c19a629196a7d1d2f (diff) | |
| download | rust-917ee7e5b1fef1916e382b237b11b4df7ce0e97d.tar.gz rust-917ee7e5b1fef1916e382b237b11b4df7ce0e97d.zip | |
Ignore two failure tests on windows
| -rw-r--r-- | src/libcore/vec.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/libcore/vec.rs b/src/libcore/vec.rs index 7ea63ae40a2..087ce42b28a 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]; |
