Use the long test timeout value for SubmitLargeOutput.
Hopefully this will be a large enough value to get the large output test to pass on the still exceedingly slow dash19.
This commit is contained in:
parent
c15ed3294c
commit
f6909a69ec
|
@ -1493,6 +1493,11 @@ ${CMake_BINARY_DIR}/bin/cmake -DVERSION=master -P ${CMake_SOURCE_DIR}/Utilities/
|
||||||
#
|
#
|
||||||
SET_TESTS_PROPERTIES(CTestSubmitLargeOutput PROPERTIES
|
SET_TESTS_PROPERTIES(CTestSubmitLargeOutput PROPERTIES
|
||||||
PASS_REGULAR_EXPRESSION "Errors occurred during submission")
|
PASS_REGULAR_EXPRESSION "Errors occurred during submission")
|
||||||
|
|
||||||
|
# Give this test plenty of time to run on slower machines:
|
||||||
|
#
|
||||||
|
SET_TESTS_PROPERTIES(CTestSubmitLargeOutput PROPERTIES
|
||||||
|
TIMEOUT ${CMAKE_LONG_TEST_TIMEOUT})
|
||||||
ENDIF(CTEST_RUN_CTestSubmitLargeOutput)
|
ENDIF(CTEST_RUN_CTestSubmitLargeOutput)
|
||||||
|
|
||||||
IF (CMAKE_RUN_LONG_TESTS AND TEST_KDE4_STABLE_BRANCH)
|
IF (CMAKE_RUN_LONG_TESTS AND TEST_KDE4_STABLE_BRANCH)
|
||||||
|
|
|
@ -16,6 +16,7 @@ CTEST_BUILD(BUILD "${CTEST_BINARY_DIRECTORY}" RETURN_VALUE res)
|
||||||
|
|
||||||
SET(CTEST_CUSTOM_MAXIMUM_FAILED_TEST_OUTPUT_SIZE 1000000000)
|
SET(CTEST_CUSTOM_MAXIMUM_FAILED_TEST_OUTPUT_SIZE 1000000000)
|
||||||
SET(CTEST_CUSTOM_MAXIMUM_PASSED_TEST_OUTPUT_SIZE 1000000000)
|
SET(CTEST_CUSTOM_MAXIMUM_PASSED_TEST_OUTPUT_SIZE 1000000000)
|
||||||
|
SET(CTEST_TEST_TIMEOUT @CMAKE_LONG_TEST_TIMEOUT@)
|
||||||
|
|
||||||
CTEST_TEST(BUILD "${CTEST_BINARY_DIRECTORY}" RETURN_VALUE res)
|
CTEST_TEST(BUILD "${CTEST_BINARY_DIRECTORY}" RETURN_VALUE res)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue