diff options
author | Theo Buehler <tb@openbsd.org> | 2023-10-11 09:56:40 -0600 |
---|---|---|
committer | Theo Buehler <tb@openbsd.org> | 2023-10-11 09:56:40 -0600 |
commit | 04fa997f5429a16f8ad17be99550f7d1f006aff5 (patch) | |
tree | e55613c806494ba7c8f9ba308ed4461a50c60620 /tests | |
parent | b112e372750f162659e16d4e7ff845289a537489 (diff) | |
download | portable-04fa997f5429a16f8ad17be99550f7d1f006aff5.tar.gz portable-04fa997f5429a16f8ad17be99550f7d1f006aff5.tar.bz2 portable-04fa997f5429a16f8ad17be99550f7d1f006aff5.zip |
Link x509_algor test to build
Diffstat (limited to 'tests')
-rw-r--r-- | tests/CMakeLists.txt | 5 | ||||
-rw-r--r-- | tests/Makefile.am | 5 |
2 files changed, 10 insertions, 0 deletions
diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index d09b9da..aa00455 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt | |||
@@ -769,6 +769,11 @@ add_executable(x509attribute x509attribute.c) | |||
769 | target_link_libraries(x509attribute ${OPENSSL_TEST_LIBS}) | 769 | target_link_libraries(x509attribute ${OPENSSL_TEST_LIBS}) |
770 | add_test(x509attribute x509attribute) | 770 | add_test(x509attribute x509attribute) |
771 | 771 | ||
772 | # x509_algor | ||
773 | add_executable(x509_algor x509_algor.c) | ||
774 | target_link_libraries(x509_algor ${OPENSSL_TEST_LIBS}) | ||
775 | add_test(x509_algor x509_algor) | ||
776 | |||
772 | # x509_asn1 | 777 | # x509_asn1 |
773 | add_executable(x509_asn1 x509_asn1.c) | 778 | add_executable(x509_asn1 x509_asn1.c) |
774 | target_link_libraries(x509_asn1 ${OPENSSL_TEST_LIBS}) | 779 | target_link_libraries(x509_asn1 ${OPENSSL_TEST_LIBS}) |
diff --git a/tests/Makefile.am b/tests/Makefile.am index b860ace..5d87bde 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am | |||
@@ -775,6 +775,11 @@ TESTS += x509attribute | |||
775 | check_PROGRAMS += x509attribute | 775 | check_PROGRAMS += x509attribute |
776 | x509attribute_SOURCES = x509attribute.c | 776 | x509attribute_SOURCES = x509attribute.c |
777 | 777 | ||
778 | # x509_algor | ||
779 | TESTS += x509_algor | ||
780 | check_PROGRAMS += x509_algor | ||
781 | x509_algor_SOURCES = x509_algor.c | ||
782 | |||
778 | # x509_asn1 | 783 | # x509_asn1 |
779 | TESTS += x509_asn1 | 784 | TESTS += x509_asn1 |
780 | check_PROGRAMS += x509_asn1 | 785 | check_PROGRAMS += x509_asn1 |