Increase max_len for fuzz_read to 8K to ensure we converge on high coverage

This commit is contained in:
Chris Hennick 2024-03-04 12:39:59 -08:00
parent 97ac845b79
commit ee14de3420

View file

@ -98,7 +98,7 @@ jobs:
- name: run fuzz
timeout-minutes: 330
run: |
cargo fuzz run fuzz_read -- -timeout=10s -fork=2 -runs=100000000 -max_len=4096 -dict=fuzz/fuzz.dict
cargo fuzz run fuzz_read -- -timeout=10s -fork=2 -runs=100000000 -max_len=8192 -dict=fuzz/fuzz.dict
- name: Upload any failure inputs
if: always()
uses: actions/upload-artifact@v3