From 3daa3a7ef4c7aeea3b9b53626fe17e8ccf17a9af Mon Sep 17 00:00:00 2001 From: Chris Hennick Date: Wed, 31 May 2023 09:01:40 -0700 Subject: [PATCH] Reduce fuzz_write_with_no_features to 1 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 0b902c48..94678d51 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=100000 -max_len=5000000000 + cargo fuzz run fuzz_write -- -timeout=5s -jobs=100 -workers=2 -runs=10000 -max_len=5000000000 - name: Upload any failure inputs if: always() uses: actions/upload-artifact@v3