diff options
| author | mat <27899617+mat-1@users.noreply.github.com> | 2026-01-13 10:51:45 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-01-13 10:51:45 -0600 |
| commit | b21ac946cafaacc9ee2478ea48ed9e72554f79ed (patch) | |
| tree | 4d05744b9801e94f5da6563d8fabddfb20d1c7b7 /azalea-protocol/fuzz | |
| parent | d5fa5e32b37754b3b5c136e58821e48cd3b7c2ff (diff) | |
| download | azalea-drasl-b21ac946cafaacc9ee2478ea48ed9e72554f79ed.tar.xz | |
Merge AzaleaRead and AzaleaWrite (#305)
Diffstat (limited to 'azalea-protocol/fuzz')
| -rw-r--r-- | azalea-protocol/fuzz/README.md | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/azalea-protocol/fuzz/README.md b/azalea-protocol/fuzz/README.md index 28b1cf4b..1a9b592c 100644 --- a/azalea-protocol/fuzz/README.md +++ b/azalea-protocol/fuzz/README.md @@ -11,12 +11,12 @@ Additionally, you should be aware that this fuzzer only targets `azalea-protocol ```sh cargo install cargo-fuzz -cargo fuzz run clientbound_game -s none -- -rss_limit_mb=16384 -malloc_limit_mb=1024 -# other valid targets: {clientbound,serverbound}_{config,game,handshake,login,status} -# note: the rss_limit_mb is increased (from the default of 2048) so libfuzzer -# doesn't oom due to the branchiness of the code :( +cargo fuzz run clientbound_game -s none -- -rss_limit_mb=4096 -malloc_limit_mb=1024 +# other valid targets: +# {clientbound,serverbound}_{config,game,handshake,login,status} -# also, the `-s none` is there for increased performance, but at the cost of catching less bugs. feel free to remove it. +# the `-s none` is there for increased performance, but at the cost of catching +# less bugs. feel free to remove it. # also see https://appsec.guide/docs/fuzzing/rust/cargo-fuzz/ ``` |
