summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTomas Mraz <tomas@openssl.org>2024-03-14 18:58:00 +0100
committerTomas Mraz <tomas@openssl.org>2024-03-15 10:23:45 +0100
commit13ee569d415fe2a70482395c022613bb4a27eff7 (patch)
tree7fa8227fbde268f6d4132785137862c13706d8d8
parentb7de38e84c13bbf56a9703fb600f925b86a9a28d (diff)
Set AFL_MAP_SIZE to avoid crash in the AFL CI job
Reviewed-by: Neil Horman <nhorman@openssl.org> Reviewed-by: Tom Cosgrove <tom.cosgrove@arm.com> Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/23843)
-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 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}