aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore1
-rw-r--r--tests/CMakeLists.txt5
-rw-r--r--tests/Makefile.am5
3 files changed, 11 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index aedfede..14917f9 100644
--- a/.gitignore
+++ b/.gitignore
@@ -144,6 +144,7 @@ tests/x509_algor*
144tests/x509_asn1* 144tests/x509_asn1*
145tests/x509_extensions_test* 145tests/x509_extensions_test*
146tests/x509_info* 146tests/x509_info*
147tests/x509_name_test*
147tests/x509attribute* 148tests/x509attribute*
148tests/x509name* 149tests/x509name*
149tests/x509req_ext* 150tests/x509req_ext*
diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt
index fa694cd..8d6fa9d 100644
--- a/tests/CMakeLists.txt
+++ b/tests/CMakeLists.txt
@@ -931,6 +931,11 @@ add_executable(x509_info x509_info.c)
931target_link_libraries(x509_info ${OPENSSL_TEST_LIBS}) 931target_link_libraries(x509_info ${OPENSSL_TEST_LIBS})
932add_platform_test(x509_info x509_info) 932add_platform_test(x509_info x509_info)
933 933
934# x509_name_test
935add_executable(x509_name_test x509_name_test.c)
936target_link_libraries(x509_name_test ${OPENSSL_TEST_LIBS})
937add_platform_test(x509_name_test x509_name_test)
938
934# x509name 939# x509name
935add_executable(x509name x509name.c) 940add_executable(x509name x509name.c)
936target_link_libraries(x509name ${OPENSSL_TEST_LIBS}) 941target_link_libraries(x509name ${OPENSSL_TEST_LIBS})
diff --git a/tests/Makefile.am b/tests/Makefile.am
index eea4a71..8153fc9 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -910,6 +910,11 @@ TESTS += x509_info
910check_PROGRAMS += x509_info 910check_PROGRAMS += x509_info
911x509_info_SOURCES = x509_info.c 911x509_info_SOURCES = x509_info.c
912 912
913# x509_name_test
914TESTS += x509_name_test
915check_PROGRAMS += x509_name_test
916x509_name_test_SOURCES = x509_name_test.c
917
913# x509name 918# x509name
914TESTS += x509name 919TESTS += x509name
915check_PROGRAMS += x509name 920check_PROGRAMS += x509name