summaryrefslogtreecommitdiffstats
path: root/Source/cmTest.h
Commit message (Collapse)AuthorAgeFilesLines
* ENH: Add NAME mode to ADD_TEST commandBrad King2009-03-161-0/+6
| | | | | | | | 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-7/+5
| | | | | 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: Add AppendProperty methods for use by C++ code in CMake. Simplify ↵Brad King2008-01-171-0/+1
| | | | implementation of SET_PROPERTY command by using them.
* ENH: make properties a bit more formal with documentation and chainingKen Martin2006-12-071-5/+15
|
* STYLE: some m_ to this-> cleanupKen Martin2006-03-151-8/+8
|
* ENH: Add a way for test to intentionally failAndy Cedilnik2005-09-071-0/+4
|
* ENH: Add set and get test propety commandAndy Cedilnik2005-07-311-3/+3
|
* ENH: Improve internal test handling by creating a test class. Command ↵Andy Cedilnik2005-04-241-0/+64
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