summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/ctest_test/TestLoadOrder-stdout.txt
Commit message (Collapse)AuthorAgeFilesLines
* ctest: Display test "WAITING" messages only in extra-verbose modeBrad King2021-04-061-1/+8
| | | | | These messages are incidental scheduling output. Avoid cluttering the normal verbose output showing tests starting and finishing.
* ctest: Optionally avoid starting tests that may exceed a given CPU loadBetsy McPhail2015-06-301-0/+7
Add a TestLoad setting to CTest that can be set via a new --test-load command-line option, CTEST_TEST_LOAD variable, or TEST_LOAD option to the ctest_test command. Teach cmCTestMultiProcessHandler to measure the CPU load and avoid starting tests that may take more than the spare load currently available. The expression <current_load> + <test_processors> <= <max-load> must be true to start a new test. Co-Author: Zack Galbreath <zack.galbreath@kitware.com>