aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorAndreas Schneider <asn@cryptomilk.org>2019-11-06 18:44:21 +0100
committerAndreas Schneider <asn@cryptomilk.org>2019-11-07 14:01:01 +0100
commitea4f71721fc40651519942348c3d6f74e47af948 (patch)
treebd1476ead0408fea6028bf6f5bceaaa831a9d341 /tests
parent4ab0fb2b48f3cfee6085e2189e6c121c64a78344 (diff)
downloadlibssh-ea4f71721fc40651519942348c3d6f74e47af948.tar.gz
libssh-ea4f71721fc40651519942348c3d6f74e47af948.tar.xz
libssh-ea4f71721fc40651519942348c3d6f74e47af948.zip
cmake: Fix setting up cwrap for server testing
Signed-off-by: Andreas Schneider <asn@cryptomilk.org> Reviewed-by: Anderson Toshiyuki Sasaki <ansasaki@redhat.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/CMakeLists.txt14
1 files changed, 8 insertions, 6 deletions
diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt
index 1df0010e..a338af44 100644
--- a/tests/CMakeLists.txt
+++ b/tests/CMakeLists.txt
@@ -43,7 +43,7 @@ set(TEST_TARGET_LIBRARIES
add_subdirectory(unittests)
-if (CLIENT_TESTING)
+if (CLIENT_TESTING OR SERVER_TESTING)
find_package(socket_wrapper 1.1.5 REQUIRED)
find_package(nss_wrapper 1.1.2 REQUIRED)
find_package(uid_wrapper 1.2.0 REQUIRED)
@@ -135,18 +135,20 @@ if (CLIENT_TESTING)
file(COPY keys/certauth/id_rsa-cert.pub DESTINATION ${CMAKE_CURRENT_BINARY_DIR}/home/bob/.ssh_cert/ FILE_PERMISSIONS OWNER_READ OWNER_WRITE)
message(STATUS "TORTURE_ENVIRONMENT=${TORTURE_ENVIRONMENT}")
-
- add_subdirectory(client)
-endif (CLIENT_TESTING)
+endif ()
if (WITH_BENCHMARKS)
add_subdirectory(benchmarks)
-endif (WITH_BENCHMARKS)
+endif ()
+
+if (CLIENT_TESTING)
+ add_subdirectory(client)
+endif ()
if (WITH_SERVER AND SERVER_TESTING)
add_subdirectory(pkd)
add_subdirectory(server)
-endif (WITH_SERVER AND SERVER_TESTING)
+endif ()
if (FUZZ_TESTING)
add_subdirectory(fuzz)