From 9867eb6cc9379a1c07f84745c34e60152011c787 Mon Sep 17 00:00:00 2001 From: Eliza Weisman Date: Mon, 4 May 2026 12:46:51 -0700 Subject: [PATCH] rt: enable it in tests --- tokio/tests/rt_threaded.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tokio/tests/rt_threaded.rs b/tokio/tests/rt_threaded.rs index ad00abaaa..a0f944d6a 100644 --- a/tokio/tests/rt_threaded.rs +++ b/tokio/tests/rt_threaded.rs @@ -698,6 +698,7 @@ fn mutex_in_block_in_place() { // // Integration test for: https://github.com/tokio-rs/tokio/issues/4941 #[test] +#[cfg(tokio_unstable)] fn lifo_stealable() { use std::time::Duration; @@ -725,6 +726,7 @@ fn lifo_stealable() { // I/O driver and another can be parked running the timer wheel and // there's still at least one worker free to steal the blocked task. .worker_threads(4) + .enable_eager_worker_wakeup() .enable_time() .build() .unwrap();