Add regress x509_info.c

This commit is contained in:
kinichiro 2020-09-15 21:38:05 +09:00
parent 6969cf036e
commit 1c0b5f0734
2 changed files with 10 additions and 0 deletions

View File

@ -548,6 +548,11 @@ add_executable(x509attribute x509attribute.c)
target_link_libraries(x509attribute ${OPENSSL_LIBS}) target_link_libraries(x509attribute ${OPENSSL_LIBS})
add_test(x509attribute x509attribute) add_test(x509attribute x509attribute)
# x509_info
add_executable(x509_info x509_info.c)
target_link_libraries(x509_info ${OPENSSL_LIBS})
add_test(x509_info x509_info)
# x509name # x509name
add_executable(x509name x509name.c) add_executable(x509name x509name.c)
target_link_libraries(x509name ${OPENSSL_LIBS}) target_link_libraries(x509name ${OPENSSL_LIBS})

View File

@ -484,6 +484,11 @@ TESTS += x509attribute
check_PROGRAMS += x509attribute check_PROGRAMS += x509attribute
x509attribute_SOURCES = x509attribute.c x509attribute_SOURCES = x509attribute.c
# x509_info
TESTS += x509_info
check_PROGRAMS += x509_info
x509_info_SOURCES = x509_info.c
# x509name # x509name
TESTS += x509name TESTS += x509name
check_PROGRAMS += x509name check_PROGRAMS += x509name