Skip to content

Commit 3da2ac8

Browse files
committed
Update wasm-smith
Brings in an update where we can validate bulk-memory instructions as well.
1 parent db40297 commit 3da2ac8

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

fuzz/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ env_logger = "0.7"
1212
libfuzzer-sys = "0.3.2"
1313
log = "0.4"
1414
tempfile = "3.0"
15-
wasm-smith = "0.1.8"
15+
wasm-smith = "0.1.9"
1616
wasmparser = { path = "../crates/wasmparser" }
1717
wasmprinter = { path = "../crates/wasmprinter" }
1818
wast = { path = "../crates/wast" }

fuzz/fuzz_targets/validate-valid-module.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ fuzz_target!(|m: ConfiguredModule<SwarmConfig>| {
1515
validator.wasm_features(wasmparser::WasmFeatures {
1616
multi_value: true,
1717
multi_memory: true,
18+
bulk_memory: true,
1819
..wasmparser::WasmFeatures::default()
1920
});
2021
if let Err(e) = validator.validate_all(&bytes) {

0 commit comments

Comments
 (0)