enable x509_asn1 test

This commit is contained in:
Theo Buehler 2023-04-28 11:03:51 -06:00
parent f08bf79969
commit 79f5058d42
2 changed files with 10 additions and 0 deletions

View File

@ -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})

View File

@ -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