about summary refs log tree commit diff
path: root/src/libstd/select.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/libstd/select.rs')
-rw-r--r--src/libstd/select.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstd/select.rs b/src/libstd/select.rs
index f537a1f6c33..531d55f6043 100644
--- a/src/libstd/select.rs
+++ b/src/libstd/select.rs
@@ -136,7 +136,7 @@ mod test {
     use cell::Cell;
     use iterator::{Iterator, range};
 
-    #[test] #[ignore(cfg(windows))] #[should_fail]
+    #[test] #[should_fail]
     fn select_doesnt_get_trolled() {
         select::<PortOne<()>>([]);
     }
@@ -316,7 +316,7 @@ mod test {
         }
     }
 
-    #[test] #[ignore(cfg(windows))]
+    #[test]
     fn select_killed() {
         do run_in_newsched_task {
             let (success_p, success_c) = oneshot::<bool>();