aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorTheo Buehler <tb@openbsd.org>2023-04-28 11:03:51 -0600
committerTheo Buehler <tb@openbsd.org>2023-04-28 11:03:51 -0600
commit79f5058d42e07d0ddec549c9e39ac8ee9c7c835a (patch)
treec6598aa4d0fb580e73fab6d533ddab19cd357100 /tests
parentf08bf799695d22feabe6c7ac73a7b151db2412a4 (diff)
downloadportable-79f5058d42e07d0ddec549c9e39ac8ee9c7c835a.tar.gz
portable-79f5058d42e07d0ddec549c9e39ac8ee9c7c835a.tar.bz2
portable-79f5058d42e07d0ddec549c9e39ac8ee9c7c835a.zip
enable x509_asn1 test
Diffstat (limited to 'tests')
-rw-r--r--tests/CMakeLists.txt5
-rw-r--r--tests/Makefile.am5
2 files changed, 10 insertions, 0 deletions
diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt
index 27065fb..e29cee0 100644
--- a/tests/CMakeLists.txt
+++ b/tests/CMakeLists.txt
@@ -727,6 +727,11 @@ add_executable(x509attribute x509attribute.c)
727target_link_libraries(x509attribute ${OPENSSL_TEST_LIBS}) 727target_link_libraries(x509attribute ${OPENSSL_TEST_LIBS})
728add_test(x509attribute x509attribute) 728add_test(x509attribute x509attribute)
729 729
730# x509_asn1
731add_executable(x509_asn1 x509_asn1.c)
732target_link_libraries(x509_asn1 ${OPENSSL_TEST_LIBS})
733add_test(x509_asn1 x509_asn1)
734
730# x509_info 735# x509_info
731add_executable(x509_info x509_info.c) 736add_executable(x509_info x509_info.c)
732target_link_libraries(x509_info ${OPENSSL_TEST_LIBS}) 737target_link_libraries(x509_info ${OPENSSL_TEST_LIBS})
diff --git a/tests/Makefile.am b/tests/Makefile.am
index d984ed9..3ee6a69 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -716,6 +716,11 @@ TESTS += x509attribute
716check_PROGRAMS += x509attribute 716check_PROGRAMS += x509attribute
717x509attribute_SOURCES = x509attribute.c 717x509attribute_SOURCES = x509attribute.c
718 718
719# x509_asn1
720TESTS += x509_asn1
721check_PROGRAMS += x509_asn1
722x509_asn1_SOURCES = x509_asn1.c
723
719# x509_info 724# x509_info
720TESTS += x509_info 725TESTS += x509_info
721check_PROGRAMS += x509_info 726check_PROGRAMS += x509_info