about summary refs log tree commit diff
diff options
context:
space:
mode:
authorklutzy <klutzytheklutzy@gmail.com>2014-06-02 12:08:19 +0900
committerklutzy <klutzytheklutzy@gmail.com>2014-06-02 12:08:19 +0900
commit42e4464198e1be7d276620b7f04ebed3385f20db (patch)
treebbf0808580a5bd2465d21fa6edb5575280e31a3a
parent1527dab9980bf1f94419dcb8482ff1f0228a6f4b (diff)
downloadrust-42e4464198e1be7d276620b7f04ebed3385f20db.tar.gz
rust-42e4464198e1be7d276620b7f04ebed3385f20db.zip
test: Enable #9205-related tests on windows
Fixes #9205.
-rw-r--r--src/test/run-pass/extern-pass-TwoU64s.rs2
-rw-r--r--src/test/run-pass/extern-return-TwoU64s.rs2
-rw-r--r--src/test/run-pass/struct-return.rs2
3 files changed, 0 insertions, 6 deletions
diff --git a/src/test/run-pass/extern-pass-TwoU64s.rs b/src/test/run-pass/extern-pass-TwoU64s.rs
index a6cb44b9c10..f975dff0e7d 100644
--- a/src/test/run-pass/extern-pass-TwoU64s.rs
+++ b/src/test/run-pass/extern-pass-TwoU64s.rs
@@ -11,8 +11,6 @@
 // Test a foreign function that accepts and returns a struct
 // by value.
 
-// ignore-win32 #9205
-
 #[deriving(PartialEq, Show)]
 struct TwoU64s {
     one: u64, two: u64
diff --git a/src/test/run-pass/extern-return-TwoU64s.rs b/src/test/run-pass/extern-return-TwoU64s.rs
index 0db47a8338e..ff6ba0d156e 100644
--- a/src/test/run-pass/extern-return-TwoU64s.rs
+++ b/src/test/run-pass/extern-return-TwoU64s.rs
@@ -8,8 +8,6 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
-// ignore-win32 #9205
-
 struct TwoU64s {
     one: u64, two: u64
 }
diff --git a/src/test/run-pass/struct-return.rs b/src/test/run-pass/struct-return.rs
index f9a5de40f49..deac460b159 100644
--- a/src/test/run-pass/struct-return.rs
+++ b/src/test/run-pass/struct-return.rs
@@ -8,8 +8,6 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
-// ignore-win32 #9205
-
 pub struct Quad { a: u64, b: u64, c: u64, d: u64 }
 pub struct Floats { a: f64, b: u8, c: f64 }