summaryrefslogtreecommitdiffstats
path: root/Tests/CTestTestChecksum
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2017-03-31 17:43:44 (GMT)
committerBrad King <brad.king@kitware.com>2017-03-31 17:46:08 (GMT)
commit72d0f947136f535fe7486f9b02caddb33f66eea1 (patch)
tree6d04b9e84425bd308de9d4dc7a1fe22d64da36d9 /Tests/CTestTestChecksum
parent18eeed41948b265168497ea3360e7b0d56e8e8a9 (diff)
downloadCMake-72d0f947136f535fe7486f9b02caddb33f66eea1.zip
CMake-72d0f947136f535fe7486f9b02caddb33f66eea1.tar.gz
CMake-72d0f947136f535fe7486f9b02caddb33f66eea1.tar.bz2
Tests: Fix spurious CTestTestParallel failures
If `CTestTestParallel` was run at the same time as `CTestTestChecksum` (e.g. during parallel testing) then the former fails due to the latter stepping on its directory. Fix the directory used for the latter to avoid the conflict.
Diffstat (limited to 'Tests/CTestTestChecksum')
-rw-r--r--Tests/CTestTestChecksum/test.cmake.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/Tests/CTestTestChecksum/test.cmake.in b/Tests/CTestTestChecksum/test.cmake.in
index 32d62bb..2a435d2 100644
--- a/Tests/CTestTestChecksum/test.cmake.in
+++ b/Tests/CTestTestChecksum/test.cmake.in
@@ -5,8 +5,8 @@ set(CTEST_DASHBOARD_ROOT "@CMake_BINARY_DIR@/Tests/CTestTest")
set(CTEST_SITE "@SITE@")
set(CTEST_BUILD_NAME "CTestTest-@BUILDNAME@-Checksum")
-set(CTEST_SOURCE_DIRECTORY "@CMake_SOURCE_DIR@/Tests/CTestTestParallel")
-set(CTEST_BINARY_DIRECTORY "@CMake_BINARY_DIR@/Tests/CTestTestParallel")
+set(CTEST_SOURCE_DIRECTORY "@CMake_SOURCE_DIR@/Tests/CTestTestChecksum")
+set(CTEST_BINARY_DIRECTORY "@CMake_BINARY_DIR@/Tests/CTestTestChecksum")
set(CTEST_CVS_COMMAND "@CVSCOMMAND@")
set(CTEST_CMAKE_GENERATOR "@CMAKE_GENERATOR@")
set(CTEST_CMAKE_GENERATOR_PLATFORM "@CMAKE_GENERATOR_PLATFORM@")