summaryrefslogtreecommitdiffstats
path: root/Tests
diff options
context:
space:
mode:
authorDavid Cole <david.cole@kitware.com>2009-10-28 19:41:52 (GMT)
committerDavid Cole <david.cole@kitware.com>2009-10-28 19:41:52 (GMT)
commitb5615e9c34ae06f289e9fbeab7470b793239660a (patch)
treeefe8af47883b9c44dd67e29776204e32cbe45392 /Tests
parent640389f3a494593252595f1c300535cee2741519 (diff)
downloadCMake-b5615e9c34ae06f289e9fbeab7470b793239660a.zip
CMake-b5615e9c34ae06f289e9fbeab7470b793239660a.tar.gz
CMake-b5615e9c34ae06f289e9fbeab7470b793239660a.tar.bz2
Increase timeout for the nightly build tests so that the poor mac nightly build on dashmacmini2 might have enough time to complete successfully. Allow for up to 3 hours. After measuring successful runs for a few weeks, perhaps we can use a lower value.
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 aad4ca5..ef04a92 100644
--- a/Tests/CMakeLists.txt
+++ b/Tests/CMakeLists.txt
@@ -251,7 +251,7 @@ ${CMake_BINARY_DIR}/bin/cmake -DVERSION=CVS -P ${CMake_SOURCE_DIR}/Utilities/Rel
")
ADD_TEST(${name} /bin/sh ${_TEST_DIR}/nightly-cmake.sh)
IF(COMMAND SET_TESTS_PROPERTIES AND COMMAND GET_TEST_PROPERTY)
- SET_TESTS_PROPERTIES (${name} PROPERTIES TIMEOUT 3500)
+ SET_TESTS_PROPERTIES (${name} PROPERTIES TIMEOUT 10800) # 10800 seconds == 3 hours
ENDIF(COMMAND SET_TESTS_PROPERTIES AND COMMAND GET_TEST_PROPERTY)
ENDMACRO(ADD_NIGHTLY_BUILD_TEST)
IF(CMAKE_BUILD_NIGHTLY_RELEASES)