From: Tomas Mraz Date: Fri, 15 Mar 2024 10:28:42 +0000 (+0100) Subject: Raise the AFL_MAP_SIZE to accommodate future growth X-Git-Tag: openssl-3.3.0-alpha1~6 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=12f5f26e1e71fe0375d82df70df338b8666ef38f;p=thirdparty%2Fopenssl.git Raise the AFL_MAP_SIZE to accommodate future growth Reviewed-by: Matt Caswell Reviewed-by: Neil Horman (Merged from https://github.com/openssl/openssl/pull/23851) --- diff --git a/.github/workflows/fuzz-checker.yml b/.github/workflows/fuzz-checker.yml index c20ae29f089..b9a73e539a7 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}