diff options
author | Hugo Landau <hlandau@openssl.org> | 2023-05-22 08:40:40 +0200 |
---|---|---|
committer | Hugo Landau <hlandau@openssl.org> | 2023-05-24 11:34:54 +0200 |
commit | 5cccc0afdb67a77f9c6eeeba2140748782c011c9 (patch) | |
tree | 9051e99f0ae4c4f95b7e5167305a2880ee5e253a | |
parent | QUIC Glossary: Add QCTX (diff) | |
download | openssl-5cccc0afdb67a77f9c6eeeba2140748782c011c9.tar.xz openssl-5cccc0afdb67a77f9c6eeeba2140748782c011c9.zip |
QUIC: Add to threads sanitizer CI
Reviewed-by: Matt Caswell <matt@openssl.org>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/20856)
-rw-r--r-- | .github/workflows/ci.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 083bab7ad3..7dbc788e9c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -187,11 +187,11 @@ jobs: - name: checkout fuzz/corpora submodule run: git submodule update --init --depth 1 fuzz/corpora - name: config - run: CC=clang ./config --banner=Configured no-fips --strict-warnings -fsanitize=thread && perl configdata.pm --dump + run: CC=clang ./config --banner=Configured no-fips --strict-warnings -fsanitize=thread enable-quic && perl configdata.pm --dump - name: make run: make -s -j4 - name: make test - run: make V=1 TESTS="test_threads test_internal_provider test_provfetch test_provider test_pbe test_evp_kdf test_pkcs12 test_store test_evp" test HARNESS_JOBS=${HARNESS_JOBS:-4} + run: make V=1 TESTS="test_threads test_internal_provider test_provfetch test_provider test_pbe test_evp_kdf test_pkcs12 test_store test_evp test_quic*" test HARNESS_JOBS=${HARNESS_JOBS:-4} enable_non-default_options: runs-on: ubuntu-latest |