diff options
| author | ywxt <ywxtcwh@gmail.com> | 2025-06-26 14:49:20 +0800 |
|---|---|---|
| committer | ywxt <ywxtcwh@gmail.com> | 2025-06-28 17:58:21 +0800 |
| commit | 46e18d1fe048a80613afacb05472d3eb44cec535 (patch) | |
| tree | cfa342aa1d28fb7063f19617500192fb09f66f02 /compiler/rustc_thread_pool/src/spawn | |
| parent | 44e69f592f4e80a39abe98db5279e03e00c73cef (diff) | |
Add FIXMEs for those ignored tests.
Diffstat (limited to 'compiler/rustc_thread_pool/src/spawn')
| -rw-r--r-- | compiler/rustc_thread_pool/src/spawn/tests.rs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/compiler/rustc_thread_pool/src/spawn/tests.rs b/compiler/rustc_thread_pool/src/spawn/tests.rs index a4989759cf9..119cfc7ca5e 100644 --- a/compiler/rustc_thread_pool/src/spawn/tests.rs +++ b/compiler/rustc_thread_pool/src/spawn/tests.rs @@ -166,6 +166,7 @@ macro_rules! test_order { }}; } +// FIXME: We should fix or remove this ignored test. #[test] #[ignore] #[cfg_attr(any(target_os = "emscripten", target_family = "wasm"), ignore)] @@ -176,6 +177,7 @@ fn 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)] @@ -186,6 +188,7 @@ fn 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)] @@ -196,6 +199,7 @@ fn lifo_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)] @@ -233,6 +237,7 @@ macro_rules! test_mixed_order { }}; } +// FIXME: We should fix or remove this ignored test. #[test] #[ignore] #[cfg_attr(any(target_os = "emscripten", target_family = "wasm"), ignore)] @@ -242,6 +247,7 @@ fn mixed_lifo_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)] |
