Add regress x509attribute.c

This commit is contained in:
kinichiro 2020-09-13 22:33:34 +09:00
parent 1ba03da236
commit 0e52cefc5c
2 changed files with 10 additions and 0 deletions

View File

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

View File

@ -479,6 +479,11 @@ TESTS += x25519test
check_PROGRAMS += x25519test
x25519test_SOURCES = x25519test.c
# x509attribute
TESTS += x509attribute
check_PROGRAMS += x509attribute
x509attribute_SOURCES = x509attribute.c
# x509name
TESTS += x509name
check_PROGRAMS += x509name