about summary refs log tree commit diff
path: root/compiler/rustc_thread_pool/src/spawn
diff options
context:
space:
mode:
authorywxt <ywxtcwh@gmail.com>2025-06-26 14:49:20 +0800
committerywxt <ywxtcwh@gmail.com>2025-06-28 17:58:21 +0800
commit46e18d1fe048a80613afacb05472d3eb44cec535 (patch)
treecfa342aa1d28fb7063f19617500192fb09f66f02 /compiler/rustc_thread_pool/src/spawn
parent44e69f592f4e80a39abe98db5279e03e00c73cef (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.rs6
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)]