summaryrefslogtreecommitdiff
path: root/Tests/LoadCommandOneConfig
Commit message (Collapse)AuthorAgeFilesLines
* Tests: Simplify LoadCommand testsBrad King2014-06-253-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 argumentsKitware Robot2012-08-132-9/+9
| | | | | | | | | | | | | | | | | 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-132-36/+36
| | | | | | | | | | | | | | | | | 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-132-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/ \+$//'
* ENH: Remove CMAKE_ANSI_CFLAGS from testsBrad King2009-07-081-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 warningsKen Martin2008-03-252-0/+2
|
* BUG: Finish fixing test for new name.Brad King2007-05-191-13/+13
|
* BUG: fix project name for testBill Hoffman2007-05-191-1/+1
|
* ENH: make properties a bit more formal with documentation and chainingKen Martin2006-12-071-2/+8
|
* ENH: do not use c++ comments in c codeBill Hoffman2006-07-261-1/+1
|
* BUG: remove command causing issues with mid build reruns of cmake on vs70Ken Martin2006-07-251-3/+0
|
* ENH: trying a slight changeKen Martin2006-07-251-3/+3
|
* BUG: remove c++commentsKen Martin2006-07-251-2/+2
|
* BUG: temp fixKen Martin2006-07-241-1/+1
|
* ENH: add more coverageKen Martin2006-07-241-0/+18
|
* BUG: work around XCode issueKen Martin2006-07-213-3/+3
|
* ENH: increase coverage in a couple placesKen Martin2006-07-212-4/+36
|
* ENH: add support for watcom wmake and wcl386Bill Hoffman2006-01-172-7/+10
|
* ENH: increase coverage in loaded commandsKen Martin2005-09-202-6/+21
|
* 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-253-14/+28
|
* FIX: fix RunSingleCommand to work with spaces in the path, and with an ↵Bill Hoffman2004-10-251-1/+5
| | | | already quoted command
* ENH: Remove warningAndy Cedilnik2004-05-031-0/+4
|
* ENH: fix warnings in testBill Hoffman2004-05-031-7/+8
|
* ENH: remove warnings in testsBill Hoffman2004-05-021-1/+1
|
* ENH: Add support for importing modules without specifying pathAndy Cedilnik2004-03-271-1/+1
|
* ENH: More coverageAndy Cedilnik2003-07-222-0/+86
|
* 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
|
* use module on all platformsBill Hoffman2003-01-151-5/+2
|
* 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-053-24/+13
|
* new plugin APIKen Martin2002-10-081-1/+1
|
* Check for libraryAndy Cedilnik2002-09-252-0/+6
|
* Fix problemAndy Cedilnik2002-09-231-1/+6
|
* Some minor fixes for macAndy Cedilnik2002-09-232-4/+4
|
* cleanupKen Martin2002-09-231-5/+1
|
* Fix test so that it will work on HPAndy Cedilnik2002-09-231-0/+3
|
* Include more testingAndy Cedilnik2002-09-202-3/+20
|
* Fix test so that it does some modules testing by checking for some functions ↵Andy Cedilnik2002-09-203-3/+33
| | | | and some size of types
* removed c++ style commentsKen Martin2002-09-201-4/+4
|
* test passing CMAKE_FLAGSKen Martin2002-09-183-1/+7
|
* removed targetKen Martin2002-09-181-1/+1
|
* added DestructorKen Martin2002-09-171-0/+10
|
* some cleanupKen Martin2002-09-171-7/+7
|
* minor fix in error messageKen Martin2002-09-171-1/+1
|
* load command testKen Martin2002-09-164-0/+105