Browse Source

Force enable multi-value for spec tests in fuzzing (#3869)

Spec tests require multi-value to be enabled and wasm-smith recently
made this a fuzz-input option, so override the fuzz input as we do for
other features and force-enable multi-value.
pull/3873/head
Alex Crichton 3 years ago
committed by GitHub
parent
commit
15940d071f
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      crates/fuzzing/src/generators.rs

1
crates/fuzzing/src/generators.rs

@ -341,6 +341,7 @@ impl Config {
config.simd_enabled = false;
config.bulk_memory_enabled = true;
config.reference_types_enabled = true;
config.multi_value_enabled = true;
config.max_memories = 1;
if let InstanceAllocationStrategy::Pooling {

Loading…
Cancel
Save