core: ignore recent should_fail tests on windows

This commit is contained in:
Graydon Hoare 2013-01-09 08:16:31 -08:00
parent c766924f44
commit 9b8c04e236
2 changed files with 4 additions and 1 deletions

View File

@ -435,12 +435,14 @@ pub mod ct {
#[test]
#[should_fail]
#[ignore(cfg(windows))]
fn test_parse_type_missing() {
parse_type("", 0, 0, die);
}
#[test]
#[should_fail]
#[ignore(cfg(windows))]
fn test_parse_type_unknown() {
parse_type("!", 0, 1, die);
}

View File

@ -3867,7 +3867,7 @@ mod tests {
}
#[test]
#[ignore(windows)]
#[ignore(cfg(windows))]
#[should_fail]
fn test_as_mut_buf_fail() {
let v = [mut (~0, @0), (~0, @0), (~0, @0), (~0, @0)];
@ -3878,6 +3878,7 @@ mod tests {
#[test]
#[should_fail]
#[ignore(cfg(windows))]
fn test_memcpy_oob() unsafe {
let a = [mut 1, 2, 3, 4];
let b = [1, 2, 3, 4, 5];