mirror of https://github.com/openssl/openssl.git
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:
parent
6fd76b95f5
commit
6381b6ddcc
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue