From 9243262fef25687500393b47acde3f8f42995de4 Mon Sep 17 00:00:00 2001 From: Brent Cook Date: Mon, 8 Nov 2021 07:43:11 -0600 Subject: add x509req_ext --- tests/CMakeLists.txt | 5 +++++ tests/Makefile.am | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index f0df7b0..2cdd683 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -586,6 +586,11 @@ add_executable(x509name x509name.c) target_link_libraries(x509name ${OPENSSL_LIBS}) add_test(x509name x509name) +# x509req_ext +add_executable(x509req_ext x509req_ext.c) +target_link_libraries(x509req_ext ${OPENSSL_LIBS}) +add_test(x509req_ext x509req_ext) + if(BUILD_SHARED_LIBS) add_custom_command(TARGET x25519test POST_BUILD COMMAND "${CMAKE_COMMAND}" -E copy diff --git a/tests/Makefile.am b/tests/Makefile.am index f1086b3..cfeb0ae 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -520,3 +520,8 @@ x509_info_SOURCES = x509_info.c TESTS += x509name check_PROGRAMS += x509name x509name_SOURCES = x509name.c + +# x509req_ext +TESTS += x509req_ext +check_PROGRAMS += x509req_ext +x509req_ext_SOURCES = x509req_ext.c -- cgit v1.2.3-55-g6feb