Disabled tests which now fail on Windows+mingw4.0 due to GCC 4.8 ABI change (#9205).

These really should have been marked xfail-win32, but that doesn't exist, so xfail-fast it is.
This commit is contained in:
Vadim Chugunov 2013-09-17 00:42:16 -07:00
parent c3fd430603
commit e6832e6b96
4 changed files with 6 additions and 0 deletions

View File

@ -9,6 +9,7 @@
// except according to those terms.
// Test that we ignore modes when calling extern functions.
// xfail-fast #9205
#[deriving(Eq)]
struct TwoU64s {

View File

@ -14,6 +14,7 @@
// xfail-fast This works standalone on windows but not with check-fast.
// possibly because there is another test that uses this extern fn but gives it
// a different signature
// xfail-fast #9205
#[deriving(Eq)]
struct TwoU64s {

View File

@ -8,6 +8,8 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.
// xfail-fast #9205
struct TwoU64s {
one: u64, two: u64
}

View File

@ -8,6 +8,8 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.
// xfail-fast #9205
pub struct Quad { a: u64, b: u64, c: u64, d: u64 }
pub struct Floats { a: f64, b: u8, c: f64 }