]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
ci: omit tests that consume too much memory
authorPauli <pauli@openssl.org>
Wed, 21 Jul 2021 09:25:22 +0000 (19:25 +1000)
committerPauli <pauli@openssl.org>
Wed, 21 Jul 2021 10:04:36 +0000 (20:04 +1000)
The SSL API tests and the passwd command test trigger memory leakage in the
address sanitizer.

Fixes #16116

Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/16125)

.github/workflows/ci.yml

index fa650e4d6c6ab095f99ac815e5941441d29b6bc4..a3a93b66022c753c9b94f79a1972e62809fbb7d4 100644 (file)
@@ -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