From c4f657281d3a257bc55e4863b68b7396c9f581c7 Mon Sep 17 00:00:00 2001 From: Chris Hennick Date: Wed, 28 Feb 2024 17:44:04 -0800 Subject: [PATCH] Bug fix: read timeout should be same with and without default features --- .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 a1d2db0b..3bdf3675 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -122,7 +122,7 @@ jobs: cargo fuzz build --no-default-features fuzz_read - name: run fuzz run: | - cargo fuzz run fuzz_read -- -timeout=5s -jobs=100 -workers=2 -runs=1000000 -max_len=5000000000 + cargo fuzz run fuzz_read -- -timeout=1s -jobs=100 -workers=2 -runs=1000000 -max_len=5000000000 - name: Upload any failure inputs if: always() uses: actions/upload-artifact@v3