From 14ccaf8ad487d38c06a53be2a924bf2c3b1f704b Mon Sep 17 00:00:00 2001 From: Theo Buehler Date: Wed, 24 Jun 2026 12:19:58 +0200 Subject: link x509_crl test to the build --- .gitignore | 1 + tests/CMakeLists.txt | 5 +++++ tests/Makefile.am | 5 +++++ 3 files changed, 11 insertions(+) diff --git a/.gitignore b/.gitignore index a3fea51..79c7b51 100644 --- a/.gitignore +++ b/.gitignore @@ -146,6 +146,7 @@ tests/compat/*.c tests/verify* tests/x509_algor* tests/x509_asn1* +tests/x509_crl* tests/x509_extensions_test* tests/x509_info* tests/x509_name_test* diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 4fc389e..f125849 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -957,6 +957,11 @@ target_link_libraries(x509_asn1 ${OPENSSL_TEST_LIBS}) prepare_emscripten_test_target(x509_asn1) add_platform_test(x509_asn1 x509_asn1) +# x509_crl +add_executable(x509_crl x509_crl.c) +target_link_libraries(x509_crl ${OPENSSL_TEST_LIBS}) +add_platform_test(x509_crl x509_crl) + # x509_extensions_test add_executable(x509_extensions_test x509_extensions_test.c) target_link_libraries(x509_extensions_test ${OPENSSL_TEST_LIBS}) diff --git a/tests/Makefile.am b/tests/Makefile.am index 953e122..5cd41c1 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -940,6 +940,11 @@ TESTS += x509_asn1 check_PROGRAMS += x509_asn1 x509_asn1_SOURCES = x509_asn1.c +# x509_crl +TESTS += x509_crl +check_PROGRAMS += x509_crl +x509_crl_SOURCES = x509_crl.c + # x509_extensions_test TESTS += x509_extensions_test check_PROGRAMS += x509_extensions_test -- cgit v1.2.3-55-g6feb