Skip to content

Commit

Permalink
Pass --enable-all to wasm2json when building corpus out of spectests.
Browse files Browse the repository at this point in the history
  • Loading branch information
nlewycky committed Nov 8, 2019
1 parent 38f4fdb commit 37268b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fuzz/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ The fuzzer works best when it has examples of small Wasm files to start with. Us

```sh
mkdir spec-test-corpus
for i in lib/spectests/spectests/*.wast; do wast2json $i -o spec-test-corpus/$(basename $i).json; done
for i in lib/spectests/spectests/*.wast; do wast2json --enable-all $i -o spec-test-corpus/$(basename $i).json; done
mv spec-test-corpus/*.wasm fuzz/corpus/simple_instantiate/
rm -r spec-test-corpus
```
Expand Down

0 comments on commit 37268b2

Please sign in to comment.