1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

fuzzing: fix parameter for second fuzzing instance in README.md

The documentation says

> Note that you must always have one -M main instance!
> Running multiple -M instances is wasteful!

https://aflplus.plus/docs/parallel_fuzzing/#2-single-system-parallelization
This commit is contained in:
Benjamin Valentin 2022-06-07 00:01:11 +02:00
parent ca0e651f74
commit ba6289ebc4

View File

@ -78,7 +78,7 @@ Parallel fuzzing is supported through `AFL_FLAGS`, e.g.:
AFL_FLAGS="-M fuzzer01" make -C fuzzing/gnrc_tcp/ fuzz
# Start second AFL instance in a different terminal
AFL_FLAGS="-M fuzzer02" make -C fuzzing/gnrc_tcp/ fuzz
AFL_FLAGS="-S fuzzer02" make -C fuzzing/gnrc_tcp/ fuzz
[sanitizers github]: https://github.com/google/sanitizers
[afl homepage]: http://lcamtuf.coredump.cx/afl/