aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheo Buehler <tb@openbsd.org>2022-11-22 19:38:27 +0100
committerTheo Buehler <tb@openbsd.org>2022-11-22 19:38:27 +0100
commit4625f45d064aca9b105a3622db5534158f63f829 (patch)
treed993afec0445abf81252a0e3761a9099758c465d
parent9b95f2e9c639a45c3a0dfb4f65eb6e4342a8e5fe (diff)
downloadportable-4625f45d064aca9b105a3622db5534158f63f829.tar.gz
portable-4625f45d064aca9b105a3622db5534158f63f829.tar.bz2
portable-4625f45d064aca9b105a3622db5534158f63f829.zip
Add asn1_string_to_utf8 test to cmake framework
-rw-r--r--tests/CMakeLists.txt5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt
index 9df5d93..537ed8f 100644
--- a/tests/CMakeLists.txt
+++ b/tests/CMakeLists.txt
@@ -93,6 +93,11 @@ add_executable(asn1x509 asn1x509.c)
93target_link_libraries(asn1x509 ${OPENSSL_TEST_LIBS}) 93target_link_libraries(asn1x509 ${OPENSSL_TEST_LIBS})
94add_test(asn1x509 asn1x509) 94add_test(asn1x509 asn1x509)
95 95
96# asn1_string_to_utf8
97add_executable(asn1_string_to_utf8 asn1_string_to_utf8.c)
98target_link_libraries(asn1_string_to_utf8 ${OPENSSL_TEST_LIBS})
99add_test(asn1_string_to_utf8 asn1_string_to_utf8)
100
96# base64test 101# base64test
97add_executable(base64test base64test.c) 102add_executable(base64test base64test.c)
98target_link_libraries(base64test ${OPENSSL_TEST_LIBS}) 103target_link_libraries(base64test ${OPENSSL_TEST_LIBS})