diff options
author | Theo Buehler <tb@openbsd.org> | 2022-11-22 19:38:27 +0100 |
---|---|---|
committer | Theo Buehler <tb@openbsd.org> | 2022-11-22 19:38:27 +0100 |
commit | 4625f45d064aca9b105a3622db5534158f63f829 (patch) | |
tree | d993afec0445abf81252a0e3761a9099758c465d | |
parent | 9b95f2e9c639a45c3a0dfb4f65eb6e4342a8e5fe (diff) | |
download | portable-4625f45d064aca9b105a3622db5534158f63f829.tar.gz portable-4625f45d064aca9b105a3622db5534158f63f829.tar.bz2 portable-4625f45d064aca9b105a3622db5534158f63f829.zip |
Add asn1_string_to_utf8 test to cmake framework
-rw-r--r-- | tests/CMakeLists.txt | 5 |
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) | |||
93 | target_link_libraries(asn1x509 ${OPENSSL_TEST_LIBS}) | 93 | target_link_libraries(asn1x509 ${OPENSSL_TEST_LIBS}) |
94 | add_test(asn1x509 asn1x509) | 94 | add_test(asn1x509 asn1x509) |
95 | 95 | ||
96 | # asn1_string_to_utf8 | ||
97 | add_executable(asn1_string_to_utf8 asn1_string_to_utf8.c) | ||
98 | target_link_libraries(asn1_string_to_utf8 ${OPENSSL_TEST_LIBS}) | ||
99 | add_test(asn1_string_to_utf8 asn1_string_to_utf8) | ||
100 | |||
96 | # base64test | 101 | # base64test |
97 | add_executable(base64test base64test.c) | 102 | add_executable(base64test base64test.c) |
98 | target_link_libraries(base64test ${OPENSSL_TEST_LIBS}) | 103 | target_link_libraries(base64test ${OPENSSL_TEST_LIBS}) |