diff options
Diffstat (limited to 'Source/CTest')
-rw-r--r-- | Source/CTest/cmCTestGenericHandler.cxx | 1 | ||||
-rw-r--r-- | Source/CTest/cmCTestSubmitHandler.cxx | 10 |
2 files changed, 6 insertions, 5 deletions
diff --git a/Source/CTest/cmCTestGenericHandler.cxx b/Source/CTest/cmCTestGenericHandler.cxx index 4e7dd56..0196c89 100644 --- a/Source/CTest/cmCTestGenericHandler.cxx +++ b/Source/CTest/cmCTestGenericHandler.cxx @@ -81,6 +81,7 @@ void cmCTestGenericHandler::SetPersistentOption(const char* op, //---------------------------------------------------------------------- void cmCTestGenericHandler::Initialize() { + this->AppendXML = false; this->Options.clear(); t_StringToString::iterator it; for ( it = this->PersistentOptions.begin(); diff --git a/Source/CTest/cmCTestSubmitHandler.cxx b/Source/CTest/cmCTestSubmitHandler.cxx index 536efcc..ff0d9b7 100644 --- a/Source/CTest/cmCTestSubmitHandler.cxx +++ b/Source/CTest/cmCTestSubmitHandler.cxx @@ -70,17 +70,17 @@ cmCTestSubmitHandler::cmCTestSubmitHandler() : HTTPProxy(), FTPProxy() this->FTPProxyType = 0; this->CDash = false; +} + +//---------------------------------------------------------------------------- +void cmCTestSubmitHandler::Initialize() +{ // We submit all available parts by default. for(cmCTest::Part p = cmCTest::PartStart; p != cmCTest::PartCount; p = cmCTest::Part(p+1)) { this->SubmitPart[p] = true; } -} - -//---------------------------------------------------------------------------- -void cmCTestSubmitHandler::Initialize() -{ this->CDash = false; this->Superclass::Initialize(); this->HTTPProxy = ""; |