Start fuzz_read with just a 1k limit
This commit is contained in:
parent
167ebccee4
commit
340bf58eeb
1 changed files with 2 additions and 2 deletions
4
.github/workflows/ci.yaml
vendored
4
.github/workflows/ci.yaml
vendored
|
@ -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=2048 -dict=fuzz/fuzz.dict
|
||||
cargo fuzz run fuzz_read -- -timeout=10s -fork=2 -runs=100000000 -max_len=1024 -dict=fuzz/fuzz.dict
|
||||
cargo fuzz run fuzz_read -- -timeout=10s -fork=2 -runs=50000000 -max_len=4096 -dict=fuzz/fuzz.dict
|
||||
cargo fuzz run fuzz_read -- -timeout=10s -fork=2 -runs=20000000 -max_len=5000 -dict=fuzz/fuzz.dict
|
||||
- name: Upload any failure inputs
|
||||
|
@ -127,7 +127,7 @@ jobs:
|
|||
- name: run fuzz
|
||||
timeout-minutes: 330
|
||||
run: |
|
||||
cargo fuzz run --no-default-features fuzz_read -- -timeout=10s -fork=2 -runs=100000000 -max_len=4096 -dict=fuzz/fuzz.dict
|
||||
cargo fuzz run --no-default-features fuzz_read -- -timeout=10s -fork=2 -runs=100000000 -max_len=1024 -dict=fuzz/fuzz.dict
|
||||
cargo fuzz run --no-default-features fuzz_read -- -timeout=10s -fork=2 -runs=20000000 -max_len=32768 -dict=fuzz/fuzz.dict
|
||||
- name: Upload any failure inputs
|
||||
if: always()
|
||||
|
|
Loading…
Add table
Reference in a new issue