From bacdc687d419e9893a4e1396d20c35fd825e0bfc Mon Sep 17 00:00:00 2001 From: Chris Hennick Date: Mon, 4 Mar 2024 14:56:04 -0800 Subject: [PATCH] Revert "Start fuzz_read with just a 1k limit" This reverts commit 340bf58eeb138555a73927f65af09551565a1bfc. --- .github/workflows/ci.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 220485a2..da1253ed 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -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=1024 -dict=fuzz/fuzz.dict + 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=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=1024 -dict=fuzz/fuzz.dict + 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=20000000 -max_len=32768 -dict=fuzz/fuzz.dict - name: Upload any failure inputs if: always()