mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-30 11:53:52 +01:00
ignore should_fail tests on windows
This commit is contained in:
parent
ce3cc46ce6
commit
907f5b4672
@ -62,6 +62,7 @@ impl<T> Data<T> {
|
||||
}
|
||||
|
||||
#[test]
|
||||
#[ignore(cfg(windows))]
|
||||
#[should_fail]
|
||||
fn test_mut_in_imm() {
|
||||
let m = Managed(1);
|
||||
@ -73,6 +74,7 @@ fn test_mut_in_imm() {
|
||||
}
|
||||
|
||||
#[test]
|
||||
#[ignore(cfg(windows))]
|
||||
#[should_fail]
|
||||
fn test_imm_in_mut() {
|
||||
let m = Managed(1);
|
||||
@ -129,6 +131,7 @@ fn test_const_in_imm() {
|
||||
|
||||
|
||||
#[test]
|
||||
#[ignore(cfg(windows))]
|
||||
#[should_fail]
|
||||
fn test_mut_in_imm_in_const() {
|
||||
let m = Managed(1);
|
||||
|
Loading…
Reference in New Issue
Block a user