diff options
author | Brent Cook <busterb@gmail.com> | 2022-04-04 01:09:27 -0500 |
---|---|---|
committer | Brent Cook <busterb@gmail.com> | 2022-04-04 01:09:27 -0500 |
commit | b52dc3d9b292f4f644d7506a2d62df11f2a6e269 (patch) | |
tree | f45a32be7d4172909d555cdb59e6449e068dac28 /tests/CMakeLists.txt | |
parent | e5263d716312ebf13b46fc886ffbd09f96106864 (diff) | |
download | portable-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.txt | 6 |
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) | |||
243 | target_link_libraries(evp_pkey_check ${OPENSSL_TEST_LIBS}) | 244 | target_link_libraries(evp_pkey_check ${OPENSSL_TEST_LIBS}) |
244 | add_test(evp_pkey_check evp_pkey_check) | 245 | add_test(evp_pkey_check evp_pkey_check) |
245 | 246 | ||
247 | # evp_pkey_cleanup | ||
248 | add_executable(evp_pkey_cleanup evp_pkey_cleanup.c) | ||
249 | target_link_libraries(evp_pkey_cleanup ${OPENSSL_TEST_LIBS}) | ||
250 | add_test(evp_pkey_cleanup evp_pkey_cleanup) | ||
251 | |||
246 | # evptest | 252 | # evptest |
247 | add_executable(evptest evptest.c) | 253 | add_executable(evptest evptest.c) |
248 | target_link_libraries(evptest ${OPENSSL_TEST_LIBS}) | 254 | target_link_libraries(evptest ${OPENSSL_TEST_LIBS}) |