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.
This commit is contained in:
parent
4266d54adb
commit
191573e8d7
|
@ -545,6 +545,11 @@ ${CMake_BINARY_DIR}/bin/cmake -DVERSION=CVS -P ${CMake_SOURCE_DIR}/Utilities/Rel
|
||||||
--test-command ${CMAKE_CTEST_COMMAND} -V
|
--test-command ${CMAKE_CTEST_COMMAND} -V
|
||||||
)
|
)
|
||||||
LIST(APPEND TEST_BUILD_DIRS "${CMake_BINARY_DIR}/Tests/ExternalProject")
|
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
|
# do each of the tutorial steps
|
||||||
FOREACH(STP RANGE 1 7)
|
FOREACH(STP RANGE 1 7)
|
||||||
|
|
Loading…
Reference in New Issue