From 66f836e61ae201d62a0a816316cac3ad29ba21f0 Mon Sep 17 00:00:00 2001 From: Alice Ryhl Date: Thu, 3 Sep 2026 14:31:54 +0000 Subject: [PATCH] tests: mark failing taskdump tests as #[ignore] (#8403) --- tokio/tests/dump.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tokio/tests/dump.rs b/tokio/tests/dump.rs index c946f3843..d16d8a763 100644 --- a/tokio/tests/dump.rs +++ b/tokio/tests/dump.rs @@ -26,6 +26,7 @@ async fn c() { } #[test] +#[ignore] fn current_thread() { let rt = runtime::Builder::new_current_thread() .enable_all() @@ -63,6 +64,7 @@ fn current_thread() { } #[test] +#[ignore] fn multi_thread() { let rt = runtime::Builder::new_multi_thread() .enable_all()