Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Tests: Simplify LoadCommand tests | Brad King | 2014-06-25 | 3 | -17/+0 |
| | | | | | | Drop out-of-place coverage of CheckFunctionExists module. The "printf" symbol is not available on VS 14 without including the <stdio.h> header to get a definition. | ||||
* | Remove CMake-language block-end command arguments | Kitware Robot | 2012-08-13 | 2 | -8/+8 |
| | | | | | | | | | | | | | | | | | Ancient versions of CMake required else(), endif(), and similar block termination commands to have arguments matching the command starting the block. This is no longer the preferred style. Run the following shell code: for c in else endif endforeach endfunction endmacro endwhile; do echo 's/\b'"$c"'\(\s*\)(.\+)/'"$c"'\1()/' done >convert.sed && git ls-files -z -- bootstrap '*.cmake' '*.cmake.in' '*CMakeLists.txt' | egrep -z -v '^(Utilities/cm|Source/kwsys/)' | egrep -z -v 'Tests/CMakeTests/While-Endwhile-' | xargs -0 sed -i -f convert.sed && rm convert.sed | ||||
* | Convert CMake-language commands to lower case | Kitware Robot | 2012-08-13 | 2 | -31/+31 |
| | | | | | | | | | | | | | | | | | 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 | ||||
* | Remove trailing whitespace from most CMake and C/C++ code | Kitware Robot | 2012-08-13 | 2 | -28/+28 |
| | | | | | | | | | | | | | | | | | Our Git commit hooks disallow modification or addition of lines with trailing whitespace. Wipe out all remnants of trailing whitespace everywhere except third-party code. Run the following shell code: git ls-files -z -- \ bootstrap doxygen.config '*.readme' \ '*.c' '*.cmake' '*.cpp' '*.cxx' \ '*.el' '*.f' '*.f90' '*.h' '*.in' '*.in.l' '*.java' \ '*.mm' '*.pike' '*.py' '*.txt' '*.vim' | egrep -z -v '^(Utilities/cm|Source/(kwsys|CursesDialog/form)/)' | egrep -z -v '^(Modules/CPack\..*\.in)' | xargs -0 sed -i 's/ \+$//' | ||||
* | LoadCommand test: cleanup | Rolf Eike Beer | 2012-01-20 | 3 | -15/+0 |
| | | | | | | This removes some useless checking. The results of these things are never properly checked so they should not count as testcases. At the end they only needlessly clutter the output. | ||||
* | ENH: Remove CMAKE_ANSI_CFLAGS from tests | Brad King | 2009-07-08 | 1 | -2/+0 |
| | | | | | As of CMake 2.6 this variable is not defined, and the ANSI flags for the HP compiler are simply hard-coded in the default C flags. | ||||
* | ENH: preclean some warnings | Ken Martin | 2008-03-25 | 2 | -0/+2 |
| | |||||
* | BUG: Finish fixing test for new name. | Brad King | 2007-05-19 | 1 | -13/+13 |
| | |||||
* | BUG: fix project name for test | Bill Hoffman | 2007-05-19 | 1 | -1/+1 |
| | |||||
* | ENH: make properties a bit more formal with documentation and chaining | Ken Martin | 2006-12-07 | 1 | -2/+8 |
| | |||||
* | ENH: do not use c++ comments in c code | Bill Hoffman | 2006-07-26 | 1 | -1/+1 |
| | |||||
* | BUG: remove command causing issues with mid build reruns of cmake on vs70 | Ken Martin | 2006-07-25 | 1 | -3/+0 |
| | |||||
* | ENH: trying a slight change | Ken Martin | 2006-07-25 | 1 | -3/+3 |
| | |||||
* | BUG: remove c++comments | Ken Martin | 2006-07-25 | 1 | -2/+2 |
| | |||||
* | BUG: temp fix | Ken Martin | 2006-07-24 | 1 | -1/+1 |
| | |||||
* | ENH: add more coverage | Ken Martin | 2006-07-24 | 1 | -0/+18 |
| | |||||
* | BUG: work around XCode issue | Ken Martin | 2006-07-21 | 3 | -3/+3 |
| | |||||
* | ENH: increase coverage in a couple places | Ken Martin | 2006-07-21 | 2 | -4/+36 |
| | |||||
* | ENH: add support for watcom wmake and wcl386 | Bill Hoffman | 2006-01-17 | 2 | -7/+10 |
| | |||||
* | ENH: increase coverage in loaded commands | Ken Martin | 2005-09-20 | 2 | -6/+21 |
| | |||||
* | ENH: use native Deployment and Development directories | Bill Hoffman | 2005-08-30 | 1 | -0/+1 |
| | |||||
* | ENH: clean up loaded command test so you can tell what really failed | Bill Hoffman | 2004-10-25 | 3 | -14/+28 |
| | |||||
* | FIX: fix RunSingleCommand to work with spaces in the path, and with an ↵ | Bill Hoffman | 2004-10-25 | 1 | -1/+5 |
| | | | | already quoted command | ||||
* | ENH: Remove warning | Andy Cedilnik | 2004-05-03 | 1 | -0/+4 |
| | |||||
* | ENH: fix warnings in test | Bill Hoffman | 2004-05-03 | 1 | -7/+8 |
| | |||||
* | ENH: remove warnings in tests | Bill Hoffman | 2004-05-02 | 1 | -1/+1 |
| | |||||
* | ENH: Add support for importing modules without specifying path | Andy Cedilnik | 2004-03-28 | 1 | -1/+1 |
| | |||||
* | ENH: More coverage | Andy Cedilnik | 2003-07-22 | 2 | -0/+86 |
| | |||||
* | ENH: add a double try compile to fix crazy make on hp | Bill Hoffman | 2003-04-16 | 1 | -0/+7 |
| | |||||
* | BUG: fixes for hp | Bill Hoffman | 2003-03-11 | 1 | -2/+9 |
| | |||||
* | use module on all platforms | Bill Hoffman | 2003-01-15 | 1 | -5/+2 |
| | |||||
* | ENH: Renamed Modules/CheckSizeOf to Modules/CheckTypeSize for consistency ↵ | Brad King | 2002-12-30 | 1 | -1/+1 |
| | | | | with the macro name that is defined by the module. | ||||
* | Speedup the test | Andy Cedilnik | 2002-12-05 | 3 | -24/+13 |
| | |||||
* | new plugin API | Ken Martin | 2002-10-08 | 1 | -1/+1 |
| | |||||
* | Check for library | Andy Cedilnik | 2002-09-25 | 2 | -0/+6 |
| | |||||
* | Fix problem | Andy Cedilnik | 2002-09-23 | 1 | -1/+6 |
| | |||||
* | Some minor fixes for mac | Andy Cedilnik | 2002-09-23 | 2 | -4/+4 |
| | |||||
* | cleanup | Ken Martin | 2002-09-23 | 1 | -5/+1 |
| | |||||
* | Fix test so that it will work on HP | Andy Cedilnik | 2002-09-23 | 1 | -0/+3 |
| | |||||
* | Include more testing | Andy Cedilnik | 2002-09-20 | 2 | -3/+20 |
| | |||||
* | Fix test so that it does some modules testing by checking for some functions ↵ | Andy Cedilnik | 2002-09-20 | 3 | -3/+33 |
| | | | | and some size of types | ||||
* | removed c++ style comments | Ken Martin | 2002-09-20 | 1 | -4/+4 |
| | |||||
* | test passing CMAKE_FLAGS | Ken Martin | 2002-09-18 | 3 | -1/+7 |
| | |||||
* | removed target | Ken Martin | 2002-09-18 | 1 | -1/+1 |
| | |||||
* | added Destructor | Ken Martin | 2002-09-17 | 1 | -0/+10 |
| | |||||
* | some cleanup | Ken Martin | 2002-09-17 | 1 | -7/+7 |
| | |||||
* | minor fix in error message | Ken Martin | 2002-09-17 | 1 | -1/+1 |
| | |||||
* | load command test | Ken Martin | 2002-09-16 | 4 | -0/+105 |