about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2013-09-11 23:22:52 -0700
committerAlex Crichton <alex@alexcrichton.com>2013-09-11 23:22:52 -0700
commit645b83d712fdfd325c899e0bb2ca09d4b0f5f880 (patch)
tree4ae54d71d726b8b840c1002bfe200fcc5b7ff056 /src
parent62166611e7510b86f395dbf19973e442fd43c403 (diff)
downloadrust-645b83d712fdfd325c899e0bb2ca09d4b0f5f880.tar.gz
rust-645b83d712fdfd325c899e0bb2ca09d4b0f5f880.zip
Flag the dynamic_lib tests as ignored
The library isn't thread-safe, cc #9137
Diffstat (limited to 'src')
-rw-r--r--src/libstd/unstable/dynamic_lib.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/libstd/unstable/dynamic_lib.rs b/src/libstd/unstable/dynamic_lib.rs
index db106de76d9..d8a07eeb8b7 100644
--- a/src/libstd/unstable/dynamic_lib.rs
+++ b/src/libstd/unstable/dynamic_lib.rs
@@ -90,7 +90,8 @@ mod test {
     use libc;
 
     #[test]
-    #[ignore(cfg(windows))] // FIXME #8818
+    // #[ignore(cfg(windows))] // FIXME #8818
+    #[ignore] // FIXME #9137 this library isn't thread-safe
     fn test_loading_cosine() {
         // The math library does not need to be loaded since it is already
         // statically linked in
@@ -121,6 +122,7 @@ mod test {
     #[cfg(target_os = "linux")]
     #[cfg(target_os = "macos")]
     #[cfg(target_os = "freebsd")]
+    #[ignore] // FIXME #9137 this library isn't thread-safe
     fn test_errors_do_not_crash() {
         // Open /dev/null as a library to get an error, and make sure
         // that only causes an error, and not a crash.