Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Convert CMake-language commands to lower case | Kitware Robot | 2012-08-13 | 2 | -3/+3 |
| | | | | | | | | | | | | | | | | | 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 | ||||
* | Increase ctest RunScript line coverage. (Note: NEW_PROCESS argument is ↵ | Zach Mullen | 2009-10-30 | 1 | -1/+1 |
| | | | | currently causing the test to fail, still investigating the reason for this, will add coverage for it later) | ||||
* | Fixed CTestTestRunScript | Zach Mullen | 2009-10-29 | 4 | -26/+4 |
| | |||||
* | Fix RunScript test; it should now work on all platforms | Zach Mullen | 2009-10-29 | 3 | -0/+13 |
| | |||||
* | Deleted old RunScript cmake scripts (renamed) | Zach Mullen | 2009-10-28 | 2 | -13/+0 |
| | |||||
* | Changed RunScript test to be in-source build safe | Zach Mullen | 2009-10-28 | 2 | -0/+13 |
| | |||||
* | Added test coverage for cmCTestRunScriptCommand | Zach Mullen | 2009-10-26 | 2 | -0/+13 |