Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Convert CMake-language commands to lower case | Kitware Robot | 2012-08-13 | 1 | -10/+10 |
| | | | | | | | | | | | | | | | | | Ancient CMake versions required upper-case commands. Later command names became case-insensitive. Now the preferred style is lower-case. Run the following shell code: cmake --help-command-list | grep -v "cmake version" | while read c; do echo 's/\b'"$(echo $c | tr '[:lower:]' '[:upper:]')"'\(\s*\)(/'"$c"'\1(/g' done >convert.sed && git ls-files -z -- bootstrap '*.cmake' '*.cmake.in' '*CMakeLists.txt' | egrep -z -v '^(Utilities/cm|Source/kwsys/)' | xargs -0 sed -i -f convert.sed && rm convert.sed | ||||
* | Parallel CTest hangs if serial test has depends | Zach Mullen | 2010-06-23 | 1 | -0/+2 |
| | |||||
* | Remove unused code from CTest test suite | Brad King | 2009-12-02 | 1 | -11/+1 |
| | | | | | We remove from Tests/CTestTest*/CMakeLists.txt some historical cruft that is no longer used by the test suite. | ||||
* | Set new ctest tests to always run, whether CTEST_TEST_CTEST is enabled or ↵ | Zach Mullen | 2009-09-23 | 1 | -2/+1 |
| | | | | not. Changed parallel test to be portable. | ||||
* | Added tests for ctest parallel options (PARALLEL_LEVEL, PROCESSORS, RUN_SERIAL) | Zach Mullen | 2009-09-22 | 1 | -0/+24 |