about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2013-09-12 01:16:08 -0700
committerbors <bors@rust-lang.org>2013-09-12 01:16:08 -0700
commit68125359cdd053628b437c2b963bd82e1ff03523 (patch)
treedc6f33e8fa579ea601cde0ea2a003ffab82b7bf6 /src/libstd
parent03ca1befb31e711fa6ed74e1dd454c5be55694c4 (diff)
parent645b83d712fdfd325c899e0bb2ca09d4b0f5f880 (diff)
downloadrust-68125359cdd053628b437c2b963bd82e1ff03523.tar.gz
rust-68125359cdd053628b437c2b963bd82e1ff03523.zip
auto merge of #9138 : alexcrichton/rust/dynamic-lib-not-threadsafe, r=thestinger
The library isn't thread-safe, cc #9137
Diffstat (limited to 'src/libstd')
-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.