core: ignore recent should_fail tests on windows
This commit is contained in:
parent
c766924f44
commit
9b8c04e236
2 changed files with 4 additions and 1 deletions
|
|
@ -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);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue