From 39fc0883fd3e9f935405ab502cb61d149dccdf53 Mon Sep 17 00:00:00 2001 From: Vadim Chugunov Date: Sun, 18 Aug 2013 01:05:23 -0700 Subject: [PATCH] Enabled tests. --- src/test/bench/task-perf-alloc-unwind.rs | 2 -- src/test/run-fail/spawnfail.rs | 1 - src/test/run-pass/cleanup-copy-mode.rs | 2 -- src/test/run-pass/issue-3168.rs | 1 - src/test/run-pass/lots-a-fail.rs | 1 - src/test/run-pass/send-iloop.rs | 1 - src/test/run-pass/task-comm-15.rs | 1 - src/test/run-pass/task-killjoin-rsrc.rs | 1 - src/test/run-pass/task-killjoin.rs | 1 - src/test/run-pass/terminate-in-initializer.rs | 1 - src/test/run-pass/unit-like-struct-drop-run.rs | 1 - src/test/run-pass/unwind-box.rs | 1 - src/test/run-pass/unwind-resource2.rs | 1 - src/test/run-pass/unwind-unique.rs | 1 - 14 files changed, 16 deletions(-) diff --git a/src/test/bench/task-perf-alloc-unwind.rs b/src/test/bench/task-perf-alloc-unwind.rs index 114c7e997a2..9718a12c83f 100644 --- a/src/test/bench/task-perf-alloc-unwind.rs +++ b/src/test/bench/task-perf-alloc-unwind.rs @@ -8,8 +8,6 @@ // option. This file may not be copied, modified, or distributed // except according to those terms. -// xfail-win32 - extern mod extra; use extra::list::{List, Cons, Nil}; diff --git a/src/test/run-fail/spawnfail.rs b/src/test/run-fail/spawnfail.rs index 12dab8e25b7..122ea901805 100644 --- a/src/test/run-fail/spawnfail.rs +++ b/src/test/run-fail/spawnfail.rs @@ -9,7 +9,6 @@ // except according to those terms. // xfail-test linked failure -// xfail-win32 // error-pattern:explicit extern mod extra; diff --git a/src/test/run-pass/cleanup-copy-mode.rs b/src/test/run-pass/cleanup-copy-mode.rs index d3b3c0c0591..70f70430bb9 100644 --- a/src/test/run-pass/cleanup-copy-mode.rs +++ b/src/test/run-pass/cleanup-copy-mode.rs @@ -8,8 +8,6 @@ // option. This file may not be copied, modified, or distributed // except according to those terms. -// xfail-win32 - use std::task; fn adder(x: @int, y: @int) -> int { return *x + *y; } diff --git a/src/test/run-pass/issue-3168.rs b/src/test/run-pass/issue-3168.rs index f4e2a9f36a0..978cd586975 100644 --- a/src/test/run-pass/issue-3168.rs +++ b/src/test/run-pass/issue-3168.rs @@ -10,7 +10,6 @@ // xfail-test linked failure // xfail-fast -// xfail-win32 #7999 use std::comm; use std::task; diff --git a/src/test/run-pass/lots-a-fail.rs b/src/test/run-pass/lots-a-fail.rs index 13296131236..b91dadc6891 100644 --- a/src/test/run-pass/lots-a-fail.rs +++ b/src/test/run-pass/lots-a-fail.rs @@ -9,7 +9,6 @@ // except according to those terms. // xfail-test linked failure -// xfail-win32 leaks extern mod extra; use std::task; diff --git a/src/test/run-pass/send-iloop.rs b/src/test/run-pass/send-iloop.rs index 4e4d3436fb0..d872680efdb 100644 --- a/src/test/run-pass/send-iloop.rs +++ b/src/test/run-pass/send-iloop.rs @@ -9,7 +9,6 @@ // except according to those terms. // xfail-test linked failure -// xfail-win32 extern mod extra; use std::comm; diff --git a/src/test/run-pass/task-comm-15.rs b/src/test/run-pass/task-comm-15.rs index 95f8e62523b..394b7e48654 100644 --- a/src/test/run-pass/task-comm-15.rs +++ b/src/test/run-pass/task-comm-15.rs @@ -9,7 +9,6 @@ // except according to those terms. // xfail-fast -// xfail-win32 extern mod extra; diff --git a/src/test/run-pass/task-killjoin-rsrc.rs b/src/test/run-pass/task-killjoin-rsrc.rs index ac9b7a315f8..84b03115765 100644 --- a/src/test/run-pass/task-killjoin-rsrc.rs +++ b/src/test/run-pass/task-killjoin-rsrc.rs @@ -9,7 +9,6 @@ // except according to those terms. // xfail-test linked failure -// xfail-win32 // A port of task-killjoin to use a class with a dtor to manage // the join. diff --git a/src/test/run-pass/task-killjoin.rs b/src/test/run-pass/task-killjoin.rs index d995bd7e3a3..cba13715068 100644 --- a/src/test/run-pass/task-killjoin.rs +++ b/src/test/run-pass/task-killjoin.rs @@ -9,7 +9,6 @@ // except according to those terms. // xfail-test linked failure -// xfail-win32 // Create a task that is supervised by another task, join the supervised task // from the supervising task, then fail the supervised task. The supervised diff --git a/src/test/run-pass/terminate-in-initializer.rs b/src/test/run-pass/terminate-in-initializer.rs index 62543971cce..65dd34ade09 100644 --- a/src/test/run-pass/terminate-in-initializer.rs +++ b/src/test/run-pass/terminate-in-initializer.rs @@ -8,7 +8,6 @@ // option. This file may not be copied, modified, or distributed // except according to those terms. -// xfail-win32 leaks // Issue #787 // Don't try to clean up uninitialized locals diff --git a/src/test/run-pass/unit-like-struct-drop-run.rs b/src/test/run-pass/unit-like-struct-drop-run.rs index d4a95ea607c..41b971d64d0 100644 --- a/src/test/run-pass/unit-like-struct-drop-run.rs +++ b/src/test/run-pass/unit-like-struct-drop-run.rs @@ -10,7 +10,6 @@ // Make sure the destructor is run for unit-like structs. // xfail-fast -// xfail-win32 #7999 use std::task; diff --git a/src/test/run-pass/unwind-box.rs b/src/test/run-pass/unwind-box.rs index 2d21f7e8f98..24e898a90bb 100644 --- a/src/test/run-pass/unwind-box.rs +++ b/src/test/run-pass/unwind-box.rs @@ -8,7 +8,6 @@ // option. This file may not be copied, modified, or distributed // except according to those terms. -// xfail-win32 extern mod extra; use std::task; diff --git a/src/test/run-pass/unwind-resource2.rs b/src/test/run-pass/unwind-resource2.rs index e2023bc5f21..4d550d9e4b2 100644 --- a/src/test/run-pass/unwind-resource2.rs +++ b/src/test/run-pass/unwind-resource2.rs @@ -8,7 +8,6 @@ // option. This file may not be copied, modified, or distributed // except according to those terms. -// xfail-win32 extern mod extra; use std::task; diff --git a/src/test/run-pass/unwind-unique.rs b/src/test/run-pass/unwind-unique.rs index 85b4c0b9b47..0038392115b 100644 --- a/src/test/run-pass/unwind-unique.rs +++ b/src/test/run-pass/unwind-unique.rs @@ -8,7 +8,6 @@ // option. This file may not be copied, modified, or distributed // except according to those terms. -// xfail-win32 extern mod extra; use std::task;