diff options
author | Brent Cook <busterb@gmail.com> | 2018-03-16 12:19:44 -0500 |
---|---|---|
committer | Brent Cook <busterb@gmail.com> | 2018-03-16 12:19:44 -0500 |
commit | 639a6629ae4b2243d1d15670f90750c3200ff4bf (patch) | |
tree | 1792633270b2bb0c0b82638ac23f62cdc7f0b389 | |
parent | 0e69421d820ac3b9e2c70375cf410e6cb674a452 (diff) | |
download | portable-639a6629ae4b2243d1d15670f90750c3200ff4bf.tar.gz portable-639a6629ae4b2243d1d15670f90750c3200ff4bf.tar.bz2 portable-639a6629ae4b2243d1d15670f90750c3200ff4bf.zip |
disable keypairtest with MSVC
-rw-r--r-- | tests/CMakeLists.txt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index bbb27d6..b6d94bf 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt | |||
@@ -215,12 +215,14 @@ target_link_libraries(igetest ${TESTS_LIBS}) | |||
215 | add_test(igetest igetest) | 215 | add_test(igetest igetest) |
216 | 216 | ||
217 | # keypairtest | 217 | # keypairtest |
218 | if(NOT MSVC) | ||
218 | add_executable(keypairtest keypairtest.c) | 219 | add_executable(keypairtest keypairtest.c) |
219 | target_link_libraries(keypairtest ${TESTS_LIBS}) | 220 | target_link_libraries(keypairtest ${TESTS_LIBS}) |
220 | add_test(keypairtest keypairtest | 221 | add_test(keypairtest keypairtest |
221 | ${CMAKE_CURRENT_SOURCE_DIR}/ca.pem | 222 | ${CMAKE_CURRENT_SOURCE_DIR}/ca.pem |
222 | ${CMAKE_CURRENT_SOURCE_DIR}/server.pem | 223 | ${CMAKE_CURRENT_SOURCE_DIR}/server.pem |
223 | ${CMAKE_CURRENT_SOURCE_DIR}/server.pem) | 224 | ${CMAKE_CURRENT_SOURCE_DIR}/server.pem) |
225 | endif() | ||
224 | 226 | ||
225 | # md4test | 227 | # md4test |
226 | add_executable(md4test md4test.c) | 228 | add_executable(md4test md4test.c) |