Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/test/run-pass/extern-pass-TwoU32s.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@
// Test a foreign function that accepts and returns a struct
// by value.

// xfail-macos Broken on mac i686

#[deriving(Eq)]
struct TwoU32s {
one: u32, two: u32
Expand Down
4 changes: 3 additions & 1 deletion src/test/run-pass/extern-pass-TwoU64s.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@
// Test a foreign function that accepts and returns a struct
// by value.

// xfail-fast This works standalone on windows but not with check-fast. don't know why
// 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 diferent signature

#[deriving(Eq)]
struct TwoU64s {
Expand Down
1 change: 1 addition & 0 deletions src/test/run-pass/extern-return-TwoU16s.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
// except according to those terms.

// xfail-win32 #5745
// xfail-macos Broken on mac i686

struct TwoU16s {
one: u16, two: u16
Expand Down
2 changes: 2 additions & 0 deletions src/test/run-pass/extern-return-TwoU32s.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.

// xfail-macos Broken on mac i686

struct TwoU32s {
one: u32, two: u32
}
Expand Down
1 change: 1 addition & 0 deletions src/test/run-pass/extern-return-TwoU8s.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
// except according to those terms.

// xfail-win32 #5745
// xfail-macos Broken on mac i686

struct TwoU8s {
one: u8, two: u8
Expand Down