Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix #12342: Add APPEND_STRING option to set_property() | Alex Neundorf | 2011-07-15 | 1 | -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 tests | Rolf Eike Beer | 2010-12-16 | 1 | -0/+6 |
| | |||||
* | Added RESOURCE_LOCK test property. | Zach Mullen | 2010-03-02 | 1 | -0/+6 |
| | |||||
* | Move documentation for new set_tests_properties properties. | Zach Mullen | 2009-12-17 | 1 | -0/+45 |
| | |||||
* | Convert CMake to OSI-approved BSD License | Brad King | 2009-09-28 | 1 | -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 command | Brad King | 2009-08-11 | 1 | -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 CDASH | Ken Martin | 2009-08-04 | 1 | -3/+3 |
| | |||||
* | BUG: Fix documentation deficiency noted in issue #7885. Thanks to Philip ↵ | David Cole | 2009-04-03 | 1 | -4/+18 |
| | | | | Lowman for the gist of the patch. | ||||
* | ENH: Add NAME mode to ADD_TEST command | Brad King | 2009-03-16 | 1 | -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 lines | Brad King | 2009-03-16 | 1 | -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 LABELS | Brad King | 2009-01-07 | 1 | -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 properties | Ken Martin | 2008-04-01 | 1 | -4/+0 |
| | |||||
* | ENH: Add AppendProperty methods for use by C++ code in CMake. Simplify ↵ | Brad King | 2008-01-17 | 1 | -0/+10 |
| | | | | implementation of SET_PROPERTY command by using them. | ||||
* | STYLE: Spelling fixes on documentation | Amitha Perera | 2008-01-10 | 1 | -4/+4 |
| | |||||
* | ENH: added per test timeout support | Ken Martin | 2007-01-25 | 1 | -0/+9 |
| | |||||
* | BUG: fix missing return value | Ken Martin | 2006-12-07 | 1 | -0/+1 |
| | |||||
* | ENH: make properties a bit more formal with documentation and chaining | Ken Martin | 2006-12-07 | 1 | -13/+50 |
| | |||||
* | ENH: make sure command is unix style as it may have been sent into cmake as ↵ | Bill Hoffman | 2006-04-25 | 1 | -0/+1 |
| | | | | a windows path | ||||
* | STYLE: some m_ to this-> cleanup | Ken Martin | 2006-03-15 | 1 | -8/+8 |
| | |||||
* | ENH: Add set and get test propety command | Andy Cedilnik | 2005-07-31 | 1 | -0/+35 |
| | |||||
* | ENH: Improve internal test handling by creating a test class. Command ↵ | Andy Cedilnik | 2005-04-24 | 1 | -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 |