diff options
Diffstat (limited to 'compiler/rustc_thread_pool/src/thread_pool')
| -rw-r--r-- | compiler/rustc_thread_pool/src/thread_pool/tests.rs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/compiler/rustc_thread_pool/src/thread_pool/tests.rs b/compiler/rustc_thread_pool/src/thread_pool/tests.rs index 9feaed7efd0..f2baab4c859 100644 --- a/compiler/rustc_thread_pool/src/thread_pool/tests.rs +++ b/compiler/rustc_thread_pool/src/thread_pool/tests.rs @@ -151,6 +151,7 @@ fn self_install() { assert!(pool.install(|| pool.install(|| true))); } +// FIXME: We should fix or remove this ignored test. #[test] #[ignore] #[cfg_attr(any(target_os = "emscripten", target_family = "wasm"), ignore)] @@ -172,6 +173,7 @@ fn mutual_install() { assert!(ok); } +// FIXME: We should fix or remove this ignored test. #[test] #[ignore] #[cfg_attr(any(target_os = "emscripten", target_family = "wasm"), ignore)] @@ -228,6 +230,7 @@ macro_rules! test_scope_order { }}; } +// FIXME: We should fix or remove this ignored test. #[test] #[ignore] #[cfg_attr(any(target_os = "emscripten", target_family = "wasm"), ignore)] @@ -237,6 +240,7 @@ fn scope_lifo_order() { assert_eq!(vec, expected); } +// FIXME: We should fix or remove this ignored test. #[test] #[ignore] #[cfg_attr(any(target_os = "emscripten", target_family = "wasm"), ignore)] @@ -279,6 +283,7 @@ fn spawn_fifo_order() { assert_eq!(vec, expected); } +// FIXME: We should fix or remove this ignored test. #[test] #[ignore] #[cfg_attr(any(target_os = "emscripten", target_family = "wasm"), ignore)] @@ -316,6 +321,7 @@ fn nested_scopes() { assert_eq!(counter.into_inner(), pools.len()); } +// FIXME: We should fix or remove this ignored test. #[test] #[ignore] #[cfg_attr(any(target_os = "emscripten", target_family = "wasm"), ignore)] |
