From: Pauli Date: Wed, 21 Jul 2021 09:25:22 +0000 (+1000) Subject: ci: omit tests that consume too much memory X-Git-Tag: openssl-3.0.0-beta2~35 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c74188e86c78c4fa47c4a658e1355c40524fadb4;p=thirdparty%2Fopenssl.git ci: omit tests that consume too much memory The SSL API tests and the passwd command test trigger memory leakage in the address sanitizer. Fixes #16116 Reviewed-by: Tomas Mraz (Merged from https://github.com/openssl/openssl/pull/16125) --- diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fa650e4d6c6..a3a93b66022 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -123,7 +123,7 @@ jobs: - name: make run: make -s -j4 - name: make test - run: make test HARNESS_JOBS=${HARNESS_JOBS:-4} OPENSSL_TEST_RAND_ORDER=0 TESTS="-test_fuzz* -test_ssl_* -test_evp -test_cmp_http -test_verify -test_cms -test_store -test_enc -[01][0-9]" + run: make test HARNESS_JOBS=${HARNESS_JOBS:-4} OPENSSL_TEST_RAND_ORDER=0 TESTS="-test_fuzz* -test_ssl_* -test_sslapi -test_passwd -test_evp -test_cmp_http -test_verify -test_cms -test_store -test_enc -[01][0-9]" address_ub_sanitizer: runs-on: ubuntu-latest