about summary refs log tree commit diff
path: root/src/libextra/sync.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/libextra/sync.rs')
-rw-r--r--src/libextra/sync.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/libextra/sync.rs b/src/libextra/sync.rs
index 63e371899a9..4172c715adb 100644
--- a/src/libextra/sync.rs
+++ b/src/libextra/sync.rs
@@ -935,6 +935,7 @@ mod tests {
         // child task must have finished by the time try returns
         do m.lock { }
     }
+    #[ignore(reason = "linked failure")]
     #[test] #[ignore(cfg(windows))]
     fn test_mutex_killed_cond() {
         // Getting killed during cond wait must not corrupt the mutex while
@@ -961,6 +962,7 @@ mod tests {
             assert!(!woken);
         }
     }
+    #[ignore(reason = "linked failure")]
     #[test] #[ignore(cfg(windows))]
     fn test_mutex_killed_broadcast() {
         use std::unstable::finally::Finally;