From 191573e8d7906f8d804cad7280635cb416d3a212 Mon Sep 17 00:00:00 2001 From: Brad King Date: Wed, 24 Jun 2009 14:48:27 -0400 Subject: BUG: Extend timeout of ExternalProject test This test requires a long time on slower machines, so we need to extend its timeout. It is an important test, so it does not fall under the CMAKE_RUN_LONG_TESTS option. In the future we should try to shorten the test by building simpler external projects. --- Tests/CMakeLists.txt | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Tests/CMakeLists.txt b/Tests/CMakeLists.txt index 51ccfe6..eca6d66 100644 --- a/Tests/CMakeLists.txt +++ b/Tests/CMakeLists.txt @@ -545,6 +545,11 @@ ${CMake_BINARY_DIR}/bin/cmake -DVERSION=CVS -P ${CMake_SOURCE_DIR}/Utilities/Rel --test-command ${CMAKE_CTEST_COMMAND} -V ) LIST(APPEND TEST_BUILD_DIRS "${CMake_BINARY_DIR}/Tests/ExternalProject") + # The ExternalProject test takes 900 seconds on some machines! + GET_TEST_PROPERTY(ExternalProject TIMEOUT PREVIOUS_TIMEOUT) + IF("${PREVIOUS_TIMEOUT}" MATCHES NOTFOUND) + SET_TESTS_PROPERTIES(ExternalProject PROPERTIES TIMEOUT 1000) + ENDIF("${PREVIOUS_TIMEOUT}" MATCHES NOTFOUND) # do each of the tutorial steps FOREACH(STP RANGE 1 7) -- cgit v0.12