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/CTest/cmCTestConfigureHandler.cxx | |
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/CTest/cmCTestConfigureHandler.cxx')
-rw-r--r-- | Source/CTest/cmCTestConfigureHandler.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/CTest/cmCTestConfigureHandler.cxx b/Source/CTest/cmCTestConfigureHandler.cxx index c744d77..42b7c71 100644 --- a/Source/CTest/cmCTestConfigureHandler.cxx +++ b/Source/CTest/cmCTestConfigureHandler.cxx @@ -92,7 +92,7 @@ int cmCTestConfigureHandler::ProcessHandler() if ( os ) { - this->CTest->StartXML(os); + this->CTest->StartXML(os, this->AppendXML); os << "<Configure>\n" << "\t<StartDateTime>" << start_time << "</StartDateTime>" << std::endl |