Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Tests: Bump CMake minimum required in tests to 2.8.12 | Chuck Atkins | 2020-12-23 | 1 | -1/+1 |
| | | | | | | | Since 3.19, CMake generates a deprecation warning when using a minimum version less than 2.8.12. This eliminates those warnings generated during tests, which are typically hidden from the user and developer but are being generated nonetheless. | ||||
* | Update links to gitlab.kitware.com repos to add `-/` | Brad King | 2020-05-26 | 1 | -1/+1 |
| | | | | | | GitLab now uses a `/-/` component between the `group/project` part of the URL and the `{issues,merge_requests,tree}` part so that it can support `group/subgroup/project` with arbitrary depth. | ||||
* | issues: update references to the CMake issue tracker | Ben Boeckel | 2016-08-15 | 1 | -1/+1 |
| | | | | | References to specific comments are left as-is since comments were not migrated. | ||||
* | Add CTestLimitDashJ test (#12904) | David Cole | 2013-01-03 | 2 | -0/+98 |
Add a test that verifies that when ctest -j 4 is called, at most, 4 tests are executed at any one time. The test works by running the same script as each of 100 tests. And then setting up test properties for DEPENDS, RUN_SERIAL, PROCESSORS and COST in order to get the tests to run in a semi-deterministic ordering, even in parallel. The script writes a file, sleeps for a bit, and then deletes the file. In the meantime, it counts files that currently exist, and emits output that triggers a test failure if the count of files is ever greater than 4. Prior to the commit that fixed bug #12904, this would result in a failed test because the output of some of the tests would indicate that more than 4 tests were running simultaneously. Now that this issue is resolved, this test will help guarantee that it stays resolved moving forward. |