summaryrefslogtreecommitdiffstats
path: root/Tests/Testing/CMakeLists.txt
Commit message (Collapse)AuthorAgeFilesLines
* Remove trailing whitespace from most CMake and C/C++ codeKitware Robot2012-08-131-4/+4
| | | | | | | | | | | | | | | | | 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/ \+$//'
* Factor per-config sample targets out of 'Testing' testBrad King2010-12-151-31/+3
| | | | | | Put the source files, build rules, and test scripts for these targets under Tests/PerConfig and refer to it from Tests/Testing as a subdirectory. The targets and scripts will be useful in other tests.
* Test add_test() generator expressionsBrad King2009-08-111-0/+27
| | | | | | | This teaches the 'testing' test to try generator expressions in arguments to add_test(NAME). This test case mimics a common use-case of passing executables to test driver scripts. We excercise the syntax for per-configuration target file names.
* ENH: Add NAME mode to ADD_TEST commandBrad King2009-03-161-1/+7
| | | | | | | | This creates command mode add_test(NAME ...). This signature is extensible with more keyword arguments later. The main purpose is to enable automatic replacement of target names with built target file locations. A side effect of this feature is support for tests that only run under specific configurations.
* ENH: Improve 'testing' test to actually testBrad King2008-12-181-1/+1
| | | | | | The 'testing' CMake test builds a project that uses add_test. This strengthens the test to actually run CTest on the project build tree after building it.
* ENH: preclean some warningsKen Martin2008-03-251-0/+1
|
* ENH: shift to using ADD_SUBDIRECTORYKen Martin2005-06-081-3/+2
|
* FIX: do not need CMakeLibSebastien Barre2002-03-271-12/+0
|
* ENH: Use ${CMAKE_CFG_INTDIR} instead of hardcoded RelInfo, Debug, Release, etc.Sebastien Barre2002-03-261-5/+1
|
* ENH: provide a test for today's ReadListFile() bug fixSebastien Barre2002-02-251-1/+1
|
* Just rename dirSebastien Barre2002-01-221-1/+1
|
* Increase Coverage.Sebastien Barre2002-01-201-1/+4
|
* More coverage + include Dart.cmake to maximize chance nslookup/hostname are ↵Sebastien Barre2002-01-201-0/+11
| | | | found
* Add documentation, comments. Move some 'Complex' sub-tests into 2 new ↵Sebastien Barre2002-01-201-0/+56
'Wrapping' and 'Testing' tests.