Reduce iterations by 50% for both fuzz_read runs, and set a max_total_time for fuzz_read_with_no_features
This commit is contained in:
parent
24ab1bf6e5
commit
6adca53895
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
|
- name: run fuzz
|
||||||
timeout-minutes: 330
|
timeout-minutes: 330
|
||||||
run: |
|
run: |
|
||||||
cargo fuzz run fuzz_read -- fuzz/corpus/seed -timeout=10s -fork=2 -runs=100000000 -max_len=1300 -len_control=500 -dict=fuzz/fuzz.dict
|
cargo fuzz run fuzz_read -- fuzz/corpus/seed -timeout=10s -fork=2 -runs=50000000 -max_len=1300 -len_control=500 -dict=fuzz/fuzz.dict
|
||||||
- name: Upload any failure inputs
|
- name: Upload any failure inputs
|
||||||
if: always()
|
if: always()
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
|
@ -125,7 +125,7 @@ jobs:
|
||||||
- name: run fuzz
|
- name: run fuzz
|
||||||
timeout-minutes: 330
|
timeout-minutes: 330
|
||||||
run: |
|
run: |
|
||||||
cargo fuzz run --no-default-features fuzz_read -- fuzz/corpus/seed -timeout=10s -fork=2 -runs=500000000 -max_len=16384 -len_control=10000 -dict=fuzz/fuzz.dict
|
cargo fuzz run --no-default-features fuzz_read -- fuzz/corpus/seed -timeout=10s -fork=2 -runs=250000000 -max_total_time=330m -max_len=16384 -len_control=10000 -dict=fuzz/fuzz.dict
|
||||||
- name: Upload any failure inputs
|
- name: Upload any failure inputs
|
||||||
if: always()
|
if: always()
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
|
|
Loading…
Add table
Reference in a new issue