summaryrefslogtreecommitdiffstats
path: root/Tests
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2016-09-29 17:40:21 (GMT)
committerBrad King <brad.king@kitware.com>2016-09-29 17:40:21 (GMT)
commit523f8ec82c5fb62f5f67c962ff59886396abd8fd (patch)
tree49bd04f23f0a4a54030dfdcc8e2525a8d4edb3bf /Tests
parent6b97a5efc6c41a440ed5d9eb5ba9aed834d0bd40 (diff)
downloadCMake-523f8ec82c5fb62f5f67c962ff59886396abd8fd.zip
CMake-523f8ec82c5fb62f5f67c962ff59886396abd8fd.tar.gz
CMake-523f8ec82c5fb62f5f67c962ff59886396abd8fd.tar.bz2
server-mode: Add option to enable/disable test case explicitly
Add a `CMake_TEST_SERVER_MODE` option that can be set in testing builds to enable/disable server mode tests explicitly. This will allow testing in combination with `CMake_TEST_EXTERNAL_CMAKE` or for server mode to be built on systems that have a python version that cannot run the test.
Diffstat (limited to 'Tests')
-rw-r--r--Tests/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/Tests/CMakeLists.txt b/Tests/CMakeLists.txt
index 484ea8a..31ed2eb 100644
--- a/Tests/CMakeLists.txt
+++ b/Tests/CMakeLists.txt
@@ -2723,7 +2723,7 @@ ${CMake_BINARY_DIR}/bin/cmake -DDIR=dev -P ${CMake_SOURCE_DIR}/Utilities/Release
ADD_TEST_MACRO(CMakeCommands.target_compile_definitions target_compile_definitions)
ADD_TEST_MACRO(CMakeCommands.target_compile_options target_compile_options)
- if(CMake_ENABLE_SERVER_MODE)
+ if(CMake_TEST_SERVER_MODE)
# The cmake server-mode test requires python for a simple client.
find_package(PythonInterp QUIET)
if(PYTHON_EXECUTABLE)