Skip to content

Commit 907f5b4

Browse files
committed
ignore should_fail tests on windows
1 parent ce3cc46 commit 907f5b4

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/libcore/managed.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ impl<T> Data<T> {
6262
}
6363

6464
#[test]
65+
#[ignore(cfg(windows))]
6566
#[should_fail]
6667
fn test_mut_in_imm() {
6768
let m = Managed(1);
@@ -73,6 +74,7 @@ fn test_mut_in_imm() {
7374
}
7475

7576
#[test]
77+
#[ignore(cfg(windows))]
7678
#[should_fail]
7779
fn test_imm_in_mut() {
7880
let m = Managed(1);
@@ -129,6 +131,7 @@ fn test_const_in_imm() {
129131

130132

131133
#[test]
134+
#[ignore(cfg(windows))]
132135
#[should_fail]
133136
fn test_mut_in_imm_in_const() {
134137
let m = Managed(1);

0 commit comments

Comments
 (0)