Bug fix: read timeout should be same with and without default features

This commit is contained in:
Chris Hennick 2024-02-28 17:44:04 -08:00
parent 207e595785
commit c4f657281d

View file

@ -122,7 +122,7 @@ jobs:
cargo fuzz build --no-default-features fuzz_read
- name: run fuzz
run: |
cargo fuzz run fuzz_read -- -timeout=5s -jobs=100 -workers=2 -runs=1000000 -max_len=5000000000
cargo fuzz run fuzz_read -- -timeout=1s -jobs=100 -workers=2 -runs=1000000 -max_len=5000000000
- name: Upload any failure inputs
if: always()
uses: actions/upload-artifact@v3