From 2603cd88fea064bc8e3965d13612c8c9e7f800a0 Mon Sep 17 00:00:00 2001 From: Chris Hennick Date: Mon, 4 Mar 2024 12:51:28 -0800 Subject: [PATCH] Bug fix: fuzz_write_with_no_features was too short --- .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 dd0415dd..03e39750 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -179,7 +179,7 @@ jobs: - name: run fuzz timeout-minutes: 330 run: | - cargo fuzz run --no-default-features fuzz_write -- -timeout=10s -fork=2 -runs=1000000 -max_len=10000 -dict=fuzz/fuzz.dict + cargo fuzz run --no-default-features fuzz_write -- -timeout=10s -fork=2 -runs=10000000 -max_len=10000 -dict=fuzz/fuzz.dict - name: Upload any failure inputs if: always() uses: actions/upload-artifact@v3