From 1c0b5f07345a5b44e4095feb21b18d0a3f66cd60 Mon Sep 17 00:00:00 2001 From: kinichiro Date: Tue, 15 Sep 2020 21:38:05 +0900 Subject: Add regress x509_info.c --- tests/CMakeLists.txt | 5 +++++ tests/Makefile.am | 5 +++++ 2 files changed, 10 insertions(+) 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 -- cgit v1.2.3-55-g6feb