summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTomas Mraz <tomas@openssl.org>2024-03-15 11:28:42 +0100
committerTomas Mraz <tomas@openssl.org>2024-03-15 13:37:50 +0100
commit12f5f26e1e71fe0375d82df70df338b8666ef38f (patch)
tree177ecb0759955557c3eec53a7e34f82c97704ef7
parent33f6d61323d0184d1db94cfd66c6a2d62d80c580 (diff)
Raise the AFL_MAP_SIZE to accommodate future growth
Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Neil Horman <nhorman@openssl.org> (Merged from https://github.com/openssl/openssl/pull/23851)
-rw-r--r--.github/workflows/fuzz-checker.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/fuzz-checker.yml b/.github/workflows/fuzz-checker.yml
index c20ae29f08..b9a73e539a 100644
--- a/.github/workflows/fuzz-checker.yml
+++ b/.github/workflows/fuzz-checker.yml
@@ -73,7 +73,7 @@ jobs:
./util/opensslwrap.sh version -c
- name: make test restricted
if: matrix.fuzzy.tests != ''
- run: AFL_MAP_SIZE=120985 make test HARNESS_JOBS=${HARNESS_JOBS:-4} TESTS="${{ matrix.fuzzy.tests }}"
+ run: AFL_MAP_SIZE=300000 make test HARNESS_JOBS=${HARNESS_JOBS:-4} TESTS="${{ matrix.fuzzy.tests }}"
- name: make test all
if: matrix.fuzzy.tests == ''
- run: AFL_MAP_SIZE=120985 make test HARNESS_JOBS=${HARNESS_JOBS:-4}
+ run: AFL_MAP_SIZE=300000 make test HARNESS_JOBS=${HARNESS_JOBS:-4}