1
0
mirror of https://github.com/Kitware/CMake.git synced 2025-10-19 02:17:27 +08:00

Tests: Run CMakeTestAllGenerators serially

This test may take a long time because it runs many other tools.
Do not make it compete with other tests for resources.
This commit is contained in:
Brad King
2017-04-18 15:10:17 -04:00
parent f1e51ec3a5
commit 2790ffc96f

View File

@@ -1158,6 +1158,9 @@ ${CMake_BINARY_DIR}/bin/cmake -DDIR=dev -P ${CMake_SOURCE_DIR}/Utilities/Release
) )
list(APPEND TEST_BUILD_DIRS list(APPEND TEST_BUILD_DIRS
"${CMake_BINARY_DIR}/Tests/CMakeTestAllGenerators") "${CMake_BINARY_DIR}/Tests/CMakeTestAllGenerators")
# This test runs a lot of processes. Do not make them compete
# for resources with other tests.
set_property(TEST CMakeTestAllGenerators PROPERTY RUN_SERIAL 1)
endif() endif()
if(NOT DEFINED CTEST_RUN_CMakeTestMultipleConfigures) if(NOT DEFINED CTEST_RUN_CMakeTestMultipleConfigures)