Skip to content

Commit 348dc25

Browse files
committed
auto merge of #5939 : brson/rust/xfail, r=brson
Disabling them because they are failing on incoming. Looking into a fix now.
2 parents 8796c9f + b18f12f commit 348dc25

5 files changed

+9
-1
lines changed

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

+2
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@
1111
// Test a foreign function that accepts and returns a struct
1212
// by value.
1313

14+
// xfail-macos Broken on mac i686
15+
1416
#[deriving(Eq)]
1517
struct TwoU32s {
1618
one: u32, two: u32

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

+3-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,9 @@
1111
// Test a foreign function that accepts and returns a struct
1212
// by value.
1313

14-
// xfail-fast This works standalone on windows but not with check-fast. don't know why
14+
// xfail-fast This works standalone on windows but not with check-fast.
15+
// possibly because there is another test that uses this extern fn but gives it
16+
// a diferent signature
1517

1618
#[deriving(Eq)]
1719
struct TwoU64s {

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

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

1111
// xfail-win32 #5745
12+
// xfail-macos Broken on mac i686
1213

1314
struct TwoU16s {
1415
one: u16, two: u16

src/test/run-pass/extern-return-TwoU32s.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-macos Broken on mac i686
12+
1113
struct TwoU32s {
1214
one: u32, two: u32
1315
}

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

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

1111
// xfail-win32 #5745
12+
// xfail-macos Broken on mac i686
1213

1314
struct TwoU8s {
1415
one: u8, two: u8

0 commit comments

Comments
 (0)