diff options
author | Brad King <brad.king@kitware.com> | 2009-01-12 14:11:29 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2009-01-12 14:11:29 (GMT) |
commit | cccac773cea0d724474a441a2e205cdb2d7193de (patch) | |
tree | 7c9e24087bf1fa8de084a6b7d9fd729829eb51ce /Source/cmCTest.h | |
parent | ae2c4143d288624b6703085602ecee2289b3ee27 (diff) | |
download | CMake-cccac773cea0d724474a441a2e205cdb2d7193de.zip CMake-cccac773cea0d724474a441a2e205cdb2d7193de.tar.gz CMake-cccac773cea0d724474a441a2e205cdb2d7193de.tar.bz2 |
ENH: Teach ctest_* to create appending XML files
This adds an APPEND option to the ctest_* commands which tells them to
put the Append="true" attribute in the Site element of their XML file.
Diffstat (limited to 'Source/cmCTest.h')
-rw-r--r-- | Source/cmCTest.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmCTest.h b/Source/cmCTest.h index 9916a00..edce0c4 100644 --- a/Source/cmCTest.h +++ b/Source/cmCTest.h @@ -199,7 +199,7 @@ public: int* retVal = 0, const char* dir = 0, double timeout = 0.0); //! Start CTest XML output file - void StartXML(std::ostream& ostr); + void StartXML(std::ostream& ostr, bool append); //! End CTest XML output file void EndXML(std::ostream& ostr); |