Skip to content

Commit a466465

Browse files
authored
Update README.md
1 parent ffd28c8 commit a466465

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,13 @@ cargo install ziggy cargo-afl honggfuzz grcov
1515
rustup target add wasm32-unknown-unknown
1616
git clone https://github.com/srlabs/substrate-runtime-fuzzer
1717
cd substrate-runtime-fuzzer/templates/solochain/
18-
cargo ziggy fuzz -t 20
18+
SKIP_WASM_BUILD=1 cargo ziggy fuzz
1919
```
2020

21-
The `-t 20` option defines a 20 seconds timeout before the fuzzer classifies an input as a "hang".
21+
You can use the the `-j n` flag to run $n$ jobs in parallel.
22+
We also recommend using `--no-honggfuzz` if running for a long time with many cores, as honggfuzz will have a tendency to slow things down and bloat the corpus in this situation.
2223

23-
You can also pass ziggy the `-j n` flag to run $n$ jobs in parallel.
24+
`SKIP_WASM_BUILD=1` will reduce compilation time and the binary's size. We are not fuzzing the wasm runtime.
2425

2526
### What is "ziggy"?
2627

0 commit comments

Comments
 (0)