diff --git a/crates/fuzzing/src/oracles.rs b/crates/fuzzing/src/oracles.rs index 29736ca195..a6df5a56c4 100644 --- a/crates/fuzzing/src/oracles.rs +++ b/crates/fuzzing/src/oracles.rs @@ -393,6 +393,8 @@ pub fn make_api_calls(api: crate::generators::api::ApiCalls) { /// /// Ensures that spec tests pass regardless of the `Config`. pub fn spectest(config: crate::generators::Config, test: crate::generators::SpecTest) { + crate::init_fuzzing(); + log::debug!("running {:?} with {:?}", test.file, config); let store = Store::new(&Engine::new(&config.to_wasmtime())); let mut wast_context = WastContext::new(store); wast_context.register_spectest().unwrap();