diff options
| author | Mara Bos <m-ou.se@m-ou.se> | 2022-03-17 12:29:30 +0100 |
|---|---|---|
| committer | Mara Bos <m-ou.se@m-ou.se> | 2022-03-23 14:58:44 +0100 |
| commit | 10b6f3350820f05ab7aed5c9e2cf30bc34663668 (patch) | |
| tree | f9d506fadf0061507894520fb4caa22bd2733e4f /library/std/src/sync | |
| parent | 7f26adeac19f78f0277637d1e798439d8f89b853 (diff) | |
| download | rust-10b6f3350820f05ab7aed5c9e2cf30bc34663668.tar.gz rust-10b6f3350820f05ab7aed5c9e2cf30bc34663668.zip | |
Update tests.
Diffstat (limited to 'library/std/src/sync')
| -rw-r--r-- | library/std/src/sync/condvar/tests.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/std/src/sync/condvar/tests.rs b/library/std/src/sync/condvar/tests.rs index 6757707cd95..f7a00676daa 100644 --- a/library/std/src/sync/condvar/tests.rs +++ b/library/std/src/sync/condvar/tests.rs @@ -191,7 +191,7 @@ fn wait_timeout_wake() { #[test] #[should_panic] -#[cfg_attr(not(unix), ignore)] +#[cfg(all(unix, not(target_os = "linux"), not(target_os = "android")))] fn two_mutexes() { let m = Arc::new(Mutex::new(())); let m2 = m.clone(); |
