From ee14de34201ee5e7c9e17a818678cf582bc04563 Mon Sep 17 00:00:00 2001 From: Chris Hennick Date: Mon, 4 Mar 2024 12:39:59 -0800 Subject: [PATCH] Increase max_len for fuzz_read to 8K to ensure we converge on high coverage --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index ebf761de..dd0415dd 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=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