From 81a0e8a156fa2694a196bab2ce87fbd885246dc7 Mon Sep 17 00:00:00 2001 From: Chris Hennick Date: Thu, 14 Mar 2024 18:32:33 -0700 Subject: [PATCH] Reduce `fuzz_read_with_no_features` to 100M runs --- .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 a98bf1c3..2af56848 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -137,7 +137,7 @@ jobs: uses: actions-rs/cargo@v1 with: command: fuzz - args: run --no-default-features fuzz_read -- fuzz/corpus/seed -timeout=10s -fork=2 -runs=250000000 -max_total_time=19800 -max_len=16384 -len_control=0 -dict=fuzz/fuzz.dict + args: run --no-default-features fuzz_read -- fuzz/corpus/seed -timeout=10s -fork=2 -runs=100000000 -max_total_time=19800 -max_len=16384 -len_control=0 -dict=fuzz/fuzz.dict - name: Upload any failure inputs if: always() uses: actions/upload-artifact@v4