From 79f5058d42e07d0ddec549c9e39ac8ee9c7c835a Mon Sep 17 00:00:00 2001 From: Theo Buehler Date: Fri, 28 Apr 2023 11:03:51 -0600 Subject: enable x509_asn1 test --- tests/CMakeLists.txt | 5 +++++ tests/Makefile.am | 5 +++++ 2 files changed, 10 insertions(+) (limited to 'tests') diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 27065fb..e29cee0 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -727,6 +727,11 @@ add_executable(x509attribute x509attribute.c) target_link_libraries(x509attribute ${OPENSSL_TEST_LIBS}) add_test(x509attribute x509attribute) +# x509_asn1 +add_executable(x509_asn1 x509_asn1.c) +target_link_libraries(x509_asn1 ${OPENSSL_TEST_LIBS}) +add_test(x509_asn1 x509_asn1) + # x509_info add_executable(x509_info x509_info.c) target_link_libraries(x509_info ${OPENSSL_TEST_LIBS}) diff --git a/tests/Makefile.am b/tests/Makefile.am index d984ed9..3ee6a69 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -716,6 +716,11 @@ TESTS += x509attribute check_PROGRAMS += x509attribute x509attribute_SOURCES = x509attribute.c +# x509_asn1 +TESTS += x509_asn1 +check_PROGRAMS += x509_asn1 +x509_asn1_SOURCES = x509_asn1.c + # x509_info TESTS += x509_info check_PROGRAMS += x509_info -- cgit v1.2.3-55-g6feb