Skip to content

Commit

Permalink
Fix test annotations from recent merge
Browse files Browse the repository at this point in the history
Fixing CI for an upcoming security release
  • Loading branch information
alexcrichton committed Oct 9, 2024
1 parent 2b23a2e commit 7689ea7
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions tests/all/module.rs
Original file line number Diff line number Diff line change
Expand Up @@ -449,12 +449,15 @@ fn concurrent_type_registry_modifications() -> Result<()> {
Ok(())
}

#[wasmtime_test(wasm_features(function_references))]
fn concurrent_type_modifications_and_checks(config: &mut Config) -> Result<()> {
#[test]
fn concurrent_type_modifications_and_checks() -> Result<()> {
const THREADS_CHECKING: usize = 4;

let _ = env_logger::try_init();

let mut config = Config::new();
config.wasm_function_references(true);

let engine = Engine::new(&config)?;

let mut threads = Vec::new();
Expand Down

0 comments on commit 7689ea7

Please sign in to comment.