From 9efd5cbd22328b712c94cc888f52456b22a03d55 Mon Sep 17 00:00:00 2001 From: Chris Hennick Date: Mon, 4 Mar 2024 14:39:31 -0800 Subject: [PATCH] Add a 2KiB step between 1K and 4K --- .github/workflows/ci.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 220485a2..08b8ee6a 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -99,6 +99,7 @@ jobs: 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=50000000 -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