From e08c8a1fe9c1b21f73b80f0e985f9744b0243059 Mon Sep 17 00:00:00 2001 From: Chris Hennick Date: Thu, 7 Mar 2024 20:01:35 -0800 Subject: [PATCH] Test with even harder fuzz_read settings (16KiB input, 1e9 iterations) --- .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 62b111b2..e808f36b 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=500000000 -max_len=2100 -len_control=10000 -dict=fuzz/fuzz.dict + cargo fuzz run fuzz_read -- -timeout=10s -fork=2 -runs=1000000000 -max_len=16384 -len_control=10000 -dict=fuzz/fuzz.dict - name: Upload any failure inputs if: always() uses: actions/upload-artifact@v3