Enable stable wasm features for spectest fuzzing (#3454)

These are now required for the general suite of spec tests we're running
by default.
This commit is contained in:
Alex Crichton
2021-10-15 10:40:42 -05:00
committed by GitHub
parent 35cdd53989
commit 1a5fa3ed3f

View File

@@ -497,8 +497,6 @@ pub fn spectest(fuzz_config: crate::generators::Config, test: crate::generators:
log::debug!("running {:?} with {:?}", test.file, fuzz_config); log::debug!("running {:?} with {:?}", test.file, fuzz_config);
let mut config = fuzz_config.to_wasmtime(); let mut config = fuzz_config.to_wasmtime();
config.wasm_memory64(false); config.wasm_memory64(false);
config.wasm_reference_types(false);
config.wasm_bulk_memory(false);
config.wasm_module_linking(false); config.wasm_module_linking(false);
config.wasm_multi_memory(false); config.wasm_multi_memory(false);
let mut store = create_store(&Engine::new(&config).unwrap()); let mut store = create_store(&Engine::new(&config).unwrap());