From 5bf679d0a26acd27cf4a5257ab67c97da058fddd Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Wed, 9 Oct 2024 07:48:31 -0700 Subject: [PATCH] Unbreak CI on release branch Ignore new tests on MIRI --- tests/all/module.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/all/module.rs b/tests/all/module.rs index 17c1680fa4f5..61852409ddb6 100644 --- a/tests/all/module.rs +++ b/tests/all/module.rs @@ -304,6 +304,7 @@ fn cross_engine_module_exports() -> Result<()> { /// Smoke test for registering and unregistering modules (and their rec group /// entries) concurrently. #[wasmtime_test(wasm_features(gc, function_references))] +#[cfg_attr(miri, ignore)] fn concurrent_type_registry_modifications(config: &mut Config) -> Result<()> { let _ = env_logger::try_init(); @@ -446,6 +447,7 @@ fn concurrent_type_registry_modifications(config: &mut Config) -> Result<()> { } #[wasmtime_test(wasm_features(function_references))] +#[cfg_attr(miri, ignore)] fn concurrent_type_modifications_and_checks(config: &mut Config) -> Result<()> { const THREADS_CHECKING: usize = 4;