Skip to content

Commit e6832e6

Browse files
committed
Disabled tests which now fail on Windows+mingw4.0 due to GCC 4.8 ABI change (rust-lang#9205).
These really should have been marked xfail-win32, but that doesn't exist, so xfail-fast it is.
1 parent c3fd430 commit e6832e6

4 files changed

+6
-0
lines changed

src/test/run-pass/extern-pass-TwoU64s-ref.rs

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
// except according to those terms.
1010

1111
// Test that we ignore modes when calling extern functions.
12+
// xfail-fast #9205
1213

1314
#[deriving(Eq)]
1415
struct TwoU64s {

src/test/run-pass/extern-pass-TwoU64s.rs

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
// xfail-fast This works standalone on windows but not with check-fast.
1515
// possibly because there is another test that uses this extern fn but gives it
1616
// a different signature
17+
// xfail-fast #9205
1718

1819
#[deriving(Eq)]
1920
struct TwoU64s {

src/test/run-pass/extern-return-TwoU64s.rs

+2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11+
// xfail-fast #9205
12+
1113
struct TwoU64s {
1214
one: u64, two: u64
1315
}

src/test/run-pass/struct-return.rs

+2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11+
// xfail-fast #9205
12+
1113
pub struct Quad { a: u64, b: u64, c: u64, d: u64 }
1214
pub struct Floats { a: f64, b: u8, c: f64 }
1315

0 commit comments

Comments
 (0)