diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 89e670f..13dd005 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -548,6 +548,11 @@ add_executable(x509attribute x509attribute.c) target_link_libraries(x509attribute ${OPENSSL_LIBS}) 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 add_executable(x509name x509name.c) target_link_libraries(x509name ${OPENSSL_LIBS}) diff --git a/tests/Makefile.am b/tests/Makefile.am index ddb3d05..34f088a 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -484,6 +484,11 @@ TESTS += x509attribute check_PROGRAMS += x509attribute x509attribute_SOURCES = x509attribute.c +# x509_info +TESTS += x509_info +check_PROGRAMS += x509_info +x509_info_SOURCES = x509_info.c + # x509name TESTS += x509name check_PROGRAMS += x509name