add README to the fuzz crate

This commit is contained in:
Benjamin Fry 2022-02-06 12:43:56 -08:00 committed by Dirkjan Ochtman
parent 628c419355
commit 5ebdf47afe

9
fuzz/README.md Normal file
View File

@ -0,0 +1,9 @@
# Fuzzing
There are some basic fuzzing configurations in `fuzz_targets`. These can be run simply with:
```shell
&> cargo fuzz run message --sanitizer=none -- -max_len=1500 -use_value_profile=1
```
Ideally this should run for an indefinite period of time before finding an issue.