summaryrefslogtreecommitdiffstats
path: root/Source/cmTest.cxx
Commit message (Collapse)AuthorAgeFilesLines
* backtrace: Convert to local paths in IssueMessageBen Boeckel2014-06-051-1/+1
| | | | | This is the only place we care show the FilePath to the user, so defer the expensive relative path calculation until here.
* genex: remove the need for backtracesBen Boeckel2014-06-051-4/+2
| | | | | Rather than making dummy backtraces and passing them around, just make backtraces optional.
* cmMakefile: return a backtraceBen Boeckel2014-06-051-1/+1
| | | | | This allows backtraces to be fully controlled by the makefile rather than externally (and makes changing how they are manipulated easier).
* stringapi: Use strings for test namesBen Boeckel2014-03-081-5/+1
|
* stringapi: Use strings for property namesBen Boeckel2014-03-081-13/+5
| | | | Property names are always generated by CMake and should never be NULL.
* Drop builtin property documentationBrad King2013-10-161-111/+0
| | | | | | Drop all DefineProperty calls for non-chained properties. Drop the documentation from the chained ones. The documentation for all properties is now in Help/prop_*/*.rst files.
* Doc: fix example for FAIL_REGULAR_EXPRESSIONRolf Eike Beer2013-05-111-1/+1
| | | | The example used PASS_REGULAR_EXPRESSION instead of FAIL...
* Remove trailing whitespace from most CMake and C/C++ codeKitware Robot2012-08-131-5/+5
| | | | | | | | | | | | | | | | | 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/ \+$//'
* Fix #12342: Add APPEND_STRING option to set_property()Alex Neundorf2011-07-151-2/+2
| | | | | | | | | set_property() has APPEND, which creates a list. E.g. when appending to COMPILE_FLAGS a string is needed, not a list. With the APPEND_STRING option the value is append as string, not as list. Alex
* Add the WORKING_DIRECTORY property to testsRolf Eike Beer2010-12-161-0/+6
|
* Added RESOURCE_LOCK test property.Zach Mullen2010-03-021-0/+6
|
* Move documentation for new set_tests_properties properties.Zach Mullen2009-12-171-0/+45
|
* Convert CMake to OSI-approved BSD LicenseBrad King2009-09-281-14/+9
| | | | | | | This converts the CMake license to a pure 3-clause OSI-approved BSD License. We drop the previous license clause requiring modified versions to be plainly marked. We also update the CMake copyright to cover the full development time range.
* Record backtrace for every add_test commandBrad King2009-08-111-9/+12
| | | | | | We teach cmTest to hold a backtrace for the add_test command that created it. This will be used later to report context for errors at generate time.
* ENH: change to CDASHKen Martin2009-08-041-3/+3
|
* BUG: Fix documentation deficiency noted in issue #7885. Thanks to Philip ↵David Cole2009-04-031-4/+18
| | | | Lowman for the gist of the patch.
* ENH: Add NAME mode to ADD_TEST commandBrad King2009-03-161-0/+1
| | | | | | | | 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: Refactor storage of test command linesBrad King2009-03-161-11/+1
| | | | | We used to separate the command executable from its argument vector. It is simpler to just store the whole command line in one vector.
* ENH: Teach CTest to submit test property LABELSBrad King2009-01-071-0/+5
| | | | | This teaches CTest to send the test property "LABELS" in Test.xml dashboard submissions as Label elements inside a Labels element.
* ENH: support unset of propertiesKen Martin2008-04-011-4/+0
|
* ENH: Add AppendProperty methods for use by C++ code in CMake. Simplify ↵Brad King2008-01-171-0/+10
| | | | implementation of SET_PROPERTY command by using them.
* STYLE: Spelling fixes on documentationAmitha Perera2008-01-101-4/+4
|
* ENH: added per test timeout supportKen Martin2007-01-251-0/+9
|
* BUG: fix missing return valueKen Martin2006-12-071-0/+1
|
* ENH: make properties a bit more formal with documentation and chainingKen Martin2006-12-071-13/+50
|
* ENH: make sure command is unix style as it may have been sent into cmake as ↵Bill Hoffman2006-04-251-0/+1
| | | | a windows path
* STYLE: some m_ to this-> cleanupKen Martin2006-03-151-8/+8
|
* ENH: Add set and get test propety commandAndy Cedilnik2005-07-311-0/+35
|
* ENH: Improve internal test handling by creating a test class. Command ↵Andy Cedilnik2005-04-241-0/+51
cmEnableTesting now only sets CMAKE_TESTING_ENABLED and cmAddTest only adds a test to the list. The actual test files are written by local generator. This way we can at some point in the future replace DartTestfile with some XML file