Link x509_algor test to build

This commit is contained in:
Theo Buehler 2023-10-11 09:56:40 -06:00
parent b112e37275
commit 04fa997f54
2 changed files with 10 additions and 0 deletions

View File

@ -769,6 +769,11 @@ add_executable(x509attribute x509attribute.c)
target_link_libraries(x509attribute ${OPENSSL_TEST_LIBS}) target_link_libraries(x509attribute ${OPENSSL_TEST_LIBS})
add_test(x509attribute x509attribute) add_test(x509attribute x509attribute)
# x509_algor
add_executable(x509_algor x509_algor.c)
target_link_libraries(x509_algor ${OPENSSL_TEST_LIBS})
add_test(x509_algor x509_algor)
# x509_asn1 # x509_asn1
add_executable(x509_asn1 x509_asn1.c) add_executable(x509_asn1 x509_asn1.c)
target_link_libraries(x509_asn1 ${OPENSSL_TEST_LIBS}) target_link_libraries(x509_asn1 ${OPENSSL_TEST_LIBS})

View File

@ -775,6 +775,11 @@ TESTS += x509attribute
check_PROGRAMS += x509attribute check_PROGRAMS += x509attribute
x509attribute_SOURCES = x509attribute.c x509attribute_SOURCES = x509attribute.c
# x509_algor
TESTS += x509_algor
check_PROGRAMS += x509_algor
x509_algor_SOURCES = x509_algor.c
# x509_asn1 # x509_asn1
TESTS += x509_asn1 TESTS += x509_asn1
check_PROGRAMS += x509_asn1 check_PROGRAMS += x509_asn1