From 21d50041f0b7eb7cf1700e73c10ab727e59cb2a1 Mon Sep 17 00:00:00 2001 From: Chris Hennick Date: Tue, 30 May 2023 20:17:39 -0700 Subject: [PATCH] Reduce fuzz_write_with_no_features to 10 million 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 f837e6b5..0b902c48 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -148,7 +148,7 @@ jobs: cargo fuzz build --no-default-features fuzz_write - name: run fuzz run: | - cargo fuzz run fuzz_write -- -timeout=5s -jobs=100 -workers=2 -runs=1000000 -max_len=5000000000 + cargo fuzz run fuzz_write -- -timeout=5s -jobs=100 -workers=2 -runs=100000 -max_len=5000000000 - name: Upload any failure inputs if: always() uses: actions/upload-artifact@v3