Kitware Robot
|
77543bde41
|
Convert CMake-language commands to lower case
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
|
2012-08-13 14:19:16 -04:00 |
Zach Mullen
|
ec5a70dc91
|
Increase ctest RunScript line coverage. (Note: NEW_PROCESS argument is currently causing the test to fail, still investigating the reason for this, will add coverage for it later)
|
2009-10-30 17:43:55 -04:00 |
Zach Mullen
|
dae1011d26
|
Fixed CTestTestRunScript
|
2009-10-29 12:46:00 -04:00 |
Zach Mullen
|
5075c255f7
|
Fix RunScript test; it should now work on all platforms
|
2009-10-29 10:00:28 -04:00 |
Zach Mullen
|
285c731f0e
|
Deleted old RunScript cmake scripts (renamed)
|
2009-10-28 14:12:03 -04:00 |
Zach Mullen
|
5eb4372001
|
Changed RunScript test to be in-source build safe
|
2009-10-28 14:11:19 -04:00 |
Zach Mullen
|
6e3dd78b8b
|
Added test coverage for cmCTestRunScriptCommand
|
2009-10-26 13:10:46 -04:00 |