Disable memfail test for general ci runs

For those CI jobs which enable crypto-mdebug, we don't want to run the
memfail test as it will cause test failures on CI jobs.  We only want to
run it on our nightly jobs and in coveralls.
This commit is contained in:
Neil Horman 2025-07-24 14:19:44 -04:00
parent 6fd76b95f5
commit 6381b6ddcc
1 changed files with 2 additions and 1 deletions

View File

@ -18,8 +18,9 @@ mkdir -p "$OSSL_CI_ARTIFACTS_PATH"
export OSSL_CI_ARTIFACTS_PATH="$(cd "$OSSL_CI_ARTIFACTS_PATH"; pwd)"
# Run the tests. This might fail, but we need to capture artifacts anyway.
# NOTE: Disabline the handshake-memfail test here as its expected to fail
set +e
make test HARNESS_JOBS=${HARNESS_JOBS:-4} "$@"
make test TESTS="-test_handshake-memfail" HARNESS_JOBS=${HARNESS_JOBS:-4} "$@"
RESULT=$?
set -e