From 4625f45d064aca9b105a3622db5534158f63f829 Mon Sep 17 00:00:00 2001 From: Theo Buehler Date: Tue, 22 Nov 2022 19:38:27 +0100 Subject: [PATCH] Add asn1_string_to_utf8 test to cmake framework --- tests/CMakeLists.txt | 5 +++++ 1 file changed, 5 insertions(+) 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) target_link_libraries(asn1x509 ${OPENSSL_TEST_LIBS}) add_test(asn1x509 asn1x509) +# asn1_string_to_utf8 +add_executable(asn1_string_to_utf8 asn1_string_to_utf8.c) +target_link_libraries(asn1_string_to_utf8 ${OPENSSL_TEST_LIBS}) +add_test(asn1_string_to_utf8 asn1_string_to_utf8) + # base64test add_executable(base64test base64test.c) target_link_libraries(base64test ${OPENSSL_TEST_LIBS})