aboutsummaryrefslogtreecommitdiff
path: root/tests/CMakeLists.txt
diff options
context:
space:
mode:
authorBrent Cook <busterb@gmail.com>2022-04-04 01:09:27 -0500
committerBrent Cook <busterb@gmail.com>2022-04-04 01:09:27 -0500
commitb52dc3d9b292f4f644d7506a2d62df11f2a6e269 (patch)
treef45a32be7d4172909d555cdb59e6449e068dac28 /tests/CMakeLists.txt
parente5263d716312ebf13b46fc886ffbd09f96106864 (diff)
downloadportable-b52dc3d9b292f4f644d7506a2d62df11f2a6e269.tar.gz
portable-b52dc3d9b292f4f644d7506a2d62df11f2a6e269.tar.bz2
portable-b52dc3d9b292f4f644d7506a2d62df11f2a6e269.zip
add evp_pkey_cleanup test
Diffstat (limited to 'tests/CMakeLists.txt')
-rw-r--r--tests/CMakeLists.txt6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt
index fb7e499..7c80002 100644
--- a/tests/CMakeLists.txt
+++ b/tests/CMakeLists.txt
@@ -4,6 +4,7 @@ include_directories(
4 . 4 .
5 ../crypto/asn1 5 ../crypto/asn1
6 ../crypto/bio 6 ../crypto/bio
7 ../crypto/evp
7 ../crypto/modes 8 ../crypto/modes
8 ../crypto/x509 9 ../crypto/x509
9 ../ssl 10 ../ssl
@@ -243,6 +244,11 @@ add_executable(evp_pkey_check evp_pkey_check.c)
243target_link_libraries(evp_pkey_check ${OPENSSL_TEST_LIBS}) 244target_link_libraries(evp_pkey_check ${OPENSSL_TEST_LIBS})
244add_test(evp_pkey_check evp_pkey_check) 245add_test(evp_pkey_check evp_pkey_check)
245 246
247# evp_pkey_cleanup
248add_executable(evp_pkey_cleanup evp_pkey_cleanup.c)
249target_link_libraries(evp_pkey_cleanup ${OPENSSL_TEST_LIBS})
250add_test(evp_pkey_cleanup evp_pkey_cleanup)
251
246# evptest 252# evptest
247add_executable(evptest evptest.c) 253add_executable(evptest evptest.c)
248target_link_libraries(evptest ${OPENSSL_TEST_LIBS}) 254target_link_libraries(evptest ${OPENSSL_TEST_LIBS})