diff --git a/crates/fuzzing/src/oracles.rs b/crates/fuzzing/src/oracles.rs index 5b555633a272..0aa14fd2e89c 100644 --- a/crates/fuzzing/src/oracles.rs +++ b/crates/fuzzing/src/oracles.rs @@ -713,7 +713,9 @@ pub fn wast_test(u: &mut arbitrary::Unstructured<'_>) -> arbitrary::Result<()> { let test = &test.test; - if test.config.component_model_async() || u.arbitrary()? { + // FIXME(#11954) async is unconditional for now due to preexisting tests not + // playing well with/without async when combined with coop multithreading. + if true || test.config.component_model_async() || u.arbitrary()? { fuzz_config.enable_async(u)?; }