From 13ee569d415fe2a70482395c022613bb4a27eff7 Mon Sep 17 00:00:00 2001 From: Tomas Mraz Date: Thu, 14 Mar 2024 18:58:00 +0100 Subject: Set AFL_MAP_SIZE to avoid crash in the AFL CI job Reviewed-by: Neil Horman Reviewed-by: Tom Cosgrove Reviewed-by: Matt Caswell (Merged from https://github.com/openssl/openssl/pull/23843) --- .github/workflows/fuzz-checker.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/fuzz-checker.yml b/.github/workflows/fuzz-checker.yml index 08dc7d54db..c20ae29f08 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: make test HARNESS_JOBS=${HARNESS_JOBS:-4} TESTS="${{ matrix.fuzzy.tests }}" + run: AFL_MAP_SIZE=120985 make test HARNESS_JOBS=${HARNESS_JOBS:-4} TESTS="${{ matrix.fuzzy.tests }}" - name: make test all if: matrix.fuzzy.tests == '' - run: make test HARNESS_JOBS=${HARNESS_JOBS:-4} + run: AFL_MAP_SIZE=120985 make test HARNESS_JOBS=${HARNESS_JOBS:-4} -- cgit v1.2.3