summary refs log tree commit diff
path: root/src/test
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2013-04-18 19:45:48 -0700
committerbors <bors@rust-lang.org>2013-04-18 19:45:48 -0700
commitd3a58f37979496efdf15bf016ebccc17b007a6cc (patch)
tree7dee88a2a46cd2e3d48c502251fd3fd0ca17ac80 /src/test
parent9618e5b459198865ab70ba7cf3a3edffdef1f7f5 (diff)
parent8a6d6dd868371e2ffc035dc508fb255bb9cbc8a0 (diff)
downloadrust-d3a58f37979496efdf15bf016ebccc17b007a6cc.tar.gz
rust-d3a58f37979496efdf15bf016ebccc17b007a6cc.zip
auto merge of #5943 : brson/rust/struct-return, r=graydon
Mac appears to follow the same ABI as MSVC. This fixes one case
but leaves others broken, like windows.
Diffstat (limited to 'src/test')
-rw-r--r--src/test/run-pass/extern-pass-TwoU32s.rs2
-rw-r--r--src/test/run-pass/extern-return-TwoU32s.rs2
2 files changed, 0 insertions, 4 deletions
diff --git a/src/test/run-pass/extern-pass-TwoU32s.rs b/src/test/run-pass/extern-pass-TwoU32s.rs
index db040b8407a..16d14a96cfe 100644
--- a/src/test/run-pass/extern-pass-TwoU32s.rs
+++ b/src/test/run-pass/extern-pass-TwoU32s.rs
@@ -11,8 +11,6 @@
 // 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
diff --git a/src/test/run-pass/extern-return-TwoU32s.rs b/src/test/run-pass/extern-return-TwoU32s.rs
index 38e61ae6d49..9e374687855 100644
--- a/src/test/run-pass/extern-return-TwoU32s.rs
+++ b/src/test/run-pass/extern-return-TwoU32s.rs
@@ -8,8 +8,6 @@
 // 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
 }