diff options
author | Tomas Mraz <tomas@openssl.org> | 2024-03-15 11:28:42 +0100 |
---|---|---|
committer | Tomas Mraz <tomas@openssl.org> | 2024-03-15 13:37:50 +0100 |
commit | 12f5f26e1e71fe0375d82df70df338b8666ef38f (patch) | |
tree | 177ecb0759955557c3eec53a7e34f82c97704ef7 | |
parent | 82-test_ocsp_cert_chain.t: Just ignore unrecognized lines in server output (diff) | |
download | openssl-12f5f26e1e71fe0375d82df70df338b8666ef38f.tar.xz openssl-12f5f26e1e71fe0375d82df70df338b8666ef38f.zip |
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.yml | 4 |
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} |