diff options
author | Brad King <brad.king@kitware.com> | 2017-03-31 13:43:44 -0400 |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2017-03-31 13:46:08 -0400 |
commit | 72d0f947136f535fe7486f9b02caddb33f66eea1 (patch) | |
tree | 6d04b9e84425bd308de9d4dc7a1fe22d64da36d9 /Tests | |
parent | 18eeed41948b265168497ea3360e7b0d56e8e8a9 (diff) | |
download | cmake-72d0f947136f535fe7486f9b02caddb33f66eea1.tar.gz |
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')
-rw-r--r-- | Tests/CTestTestChecksum/test.cmake.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Tests/CTestTestChecksum/test.cmake.in b/Tests/CTestTestChecksum/test.cmake.in index 32d62bb347..2a435d2080 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@") |