Fix memory leak (#2348)

* Fix memory leak

* Fix flaky errors
This commit is contained in:
yhirose
2026-02-08 15:49:30 -10:00
committed by GitHub
parent 5d717e6d91
commit 4e14bc8948
4 changed files with 11 additions and 3 deletions

View File

@@ -95,6 +95,8 @@ jobs:
- name: build and run tests (OpenSSL)
if: matrix.tls_backend == 'openssl'
run: cd test && make
env:
LSAN_OPTIONS: suppressions=lsan_suppressions.txt
- name: build and run tests (Mbed TLS)
if: matrix.tls_backend == 'mbedtls'
run: cd test && make test_split_mbedtls && make test_mbedtls && ./test_mbedtls
@@ -122,6 +124,8 @@ jobs:
- name: build and run tests (OpenSSL)
if: matrix.tls_backend == 'openssl'
run: cd test && make
env:
LSAN_OPTIONS: suppressions=lsan_suppressions.txt
- name: build and run tests (Mbed TLS)
if: matrix.tls_backend == 'mbedtls'
run: cd test && make test_split_mbedtls && make test_mbedtls && ./test_mbedtls