aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorTheo Buehler <tb@openbsd.org>2023-05-12 02:34:22 -0600
committerTheo Buehler <tb@openbsd.org>2023-05-12 02:34:22 -0600
commit89fee1252f2284039d6a089f172b6acc72747229 (patch)
treeae43f5afffc146154637181917ffd4ef8bfce17d /tests
parent72ef4d3c779a825b80d3eae63833f5e13df639cd (diff)
downloadportable-89fee1252f2284039d6a089f172b6acc72747229.tar.gz
portable-89fee1252f2284039d6a089f172b6acc72747229.tar.bz2
portable-89fee1252f2284039d6a089f172b6acc72747229.zip
Link asn1oct test to the build
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 4c38a7d..991fb01 100644
--- a/tests/CMakeLists.txt
+++ b/tests/CMakeLists.txt
@@ -80,6 +80,11 @@ add_executable(asn1object asn1object.c)
80target_link_libraries(asn1object ${OPENSSL_TEST_LIBS}) 80target_link_libraries(asn1object ${OPENSSL_TEST_LIBS})
81add_test(asn1object asn1object) 81add_test(asn1object asn1object)
82 82
83# asn1oct
84add_executable(asn1oct asn1oct.c)
85target_link_libraries(asn1oct ${OPENSSL_TEST_LIBS})
86add_test(asn1oct asn1oct)
87
83# asn1string_copy 88# asn1string_copy
84add_executable(asn1string_copy asn1string_copy.c) 89add_executable(asn1string_copy asn1string_copy.c)
85target_link_libraries(asn1string_copy ${OPENSSL_TEST_LIBS}) 90target_link_libraries(asn1string_copy ${OPENSSL_TEST_LIBS})
diff --git a/tests/Makefile.am b/tests/Makefile.am
index b17f1ef..71037d8 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -102,6 +102,11 @@ TESTS += asn1object
102check_PROGRAMS += asn1object 102check_PROGRAMS += asn1object
103asn1object_SOURCES = asn1object.c 103asn1object_SOURCES = asn1object.c
104 104
105# asn1oct
106TESTS += asn1oct
107check_PROGRAMS += asn1oct
108asn1oct_SOURCES = asn1oct.c
109
105# asn1string_copy 110# asn1string_copy
106TESTS += asn1string_copy 111TESTS += asn1string_copy
107check_PROGRAMS += asn1string_copy 112check_PROGRAMS += asn1string_copy