diff options
author | Don <don.j.olmstead@gmail.com> | 2018-03-21 11:33:38 -0700 |
---|---|---|
committer | Don <don.j.olmstead@gmail.com> | 2018-03-21 11:33:38 -0700 |
commit | 4d753badc09cca1a85c4fb7f404bae2d6ed51f5f (patch) | |
tree | f733fb88780823f3f9e6b119bcf3648cf90a7f02 /tests | |
parent | a1c22d93cdb0dab8f1df470d6c05fda239b9054e (diff) | |
download | portable-4d753badc09cca1a85c4fb7f404bae2d6ed51f5f.tar.gz portable-4d753badc09cca1a85c4fb7f404bae2d6ed51f5f.tar.bz2 portable-4d753badc09cca1a85c4fb7f404bae2d6ed51f5f.zip |
Cleanup options around tests
Diffstat (limited to 'tests')
-rw-r--r-- | tests/CMakeLists.txt | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index b669360..69c0d51 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt | |||
@@ -427,14 +427,3 @@ add_test(verifytest verifytest) | |||
427 | add_executable(x25519test x25519test.c) | 427 | add_executable(x25519test x25519test.c) |
428 | target_link_libraries(x25519test ${OPENSSL_LIBS}) | 428 | target_link_libraries(x25519test ${OPENSSL_LIBS}) |
429 | add_test(x25519test x25519test) | 429 | add_test(x25519test x25519test) |
430 | |||
431 | if(ENABLE_VSTEST AND BUILD_SHARED_LIBS) | ||
432 | add_custom_command(TARGET x25519test POST_BUILD | ||
433 | COMMAND "${CMAKE_COMMAND}" -E copy | ||
434 | "$<TARGET_FILE:tls>" | ||
435 | "$<TARGET_FILE:ssl>" | ||
436 | "$<TARGET_FILE:crypto>" | ||
437 | "${CMAKE_CURRENT_BINARY_DIR}" | ||
438 | COMMENT "Copying DLLs for regression tests") | ||
439 | endif() | ||
440 | |||