Skip to content

xfail some extern ABI tests on mac #5939

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 2 commits into from
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