summaryrefslogtreecommitdiffstats
path: root/Tests/LoadCommand/CMakeLists.txt
Commit message (Collapse)AuthorAgeFilesLines
* Tests: Remove ancient workaround in LoadCommand testsBrad King2017-10-041-7/+0
|
* Tests: Simplify LoadCommand testsBrad King2014-06-251-4/+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 argumentsKitware Robot2012-08-131-6/+6
| | | | | | | | | | | | | | | | | 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 caseKitware Robot2012-08-131-22/+22
| | | | | | | | | | | | | | | | | 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++ codeKitware Robot2012-08-131-8/+8
| | | | | | | | | | | | | | | | | 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: cleanupRolf Eike Beer2012-01-201-6/+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: preclean some warningsKen Martin2008-03-251-0/+1
|
* BUG: Finish fixing test for new name.Brad King2007-05-191-13/+13
|
* BUG: fix project name for testBill Hoffman2007-05-191-1/+1
|
* BUG: work around XCode issueKen Martin2006-07-211-2/+2
|
* ENH: increase coverage in a couple placesKen Martin2006-07-211-1/+5
|
* ENH: increase coverage in loaded commandsKen Martin2005-09-201-3/+2
|
* ENH: use native Deployment and Development directoriesBill Hoffman2005-08-301-0/+1
|
* ENH: clean up loaded command test so you can tell what really failedBill Hoffman2004-10-251-2/+4
|
* ENH: Add support for importing modules without specifying pathAndy Cedilnik2004-03-281-1/+1
|
* ENH: add a double try compile to fix crazy make on hpBill Hoffman2003-04-161-0/+7
|
* BUG: fixes for hpBill Hoffman2003-03-111-2/+9
|
* ENH: Renamed Modules/CheckSizeOf to Modules/CheckTypeSize for consistency ↵Brad King2002-12-301-1/+1
| | | | with the macro name that is defined by the module.
* Speedup the testAndy Cedilnik2002-12-051-12/+1
|
* Check for libraryAndy Cedilnik2002-09-251-0/+3
|
* Include more testingAndy Cedilnik2002-09-201-3/+11
|
* Fix test so that it does some modules testing by checking for some functions ↵Andy Cedilnik2002-09-201-1/+18
| | | | and some size of types
* test passing CMAKE_FLAGSKen Martin2002-09-181-1/+1
|
* removed targetKen Martin2002-09-181-1/+1
|
* some cleanupKen Martin2002-09-171-7/+7
|
* minor fix in error messageKen Martin2002-09-171-1/+1
|
* load command testKen Martin2002-09-161-0/+31