Skip to content

Commit 8c61265

Browse files
authored
wasmi: use all-features for differential fuzzing (google#14774)
A [recent update](wasmi-labs/wasmi#1758) made all oracles optional. At least one oracle needs to be enabled for compilation to succeed. With `all-features` we simply always enable all available oracles.
1 parent eaea6be commit 8c61265

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

projects/wasmi/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ nightly="+$RUSTUP_TOOLCHAIN"
2020

2121
cargo $nightly fuzz build translate -O
2222
cargo $nightly fuzz build execute -O
23-
cargo $nightly fuzz build differential --features=differential -O
23+
cargo $nightly fuzz build differential --all-features -O
2424

2525
FUZZ_TARGET_OUTPUT_DIR=target/x86_64-unknown-linux-gnu/release
2626
for f in fuzz/fuzz_targets/*.rs

0 commit comments

Comments
 (0)