BUG: Fix CTest submit-only operation
We need to initialize cmCTestSubmitHandler on construction to make sure all parts get enabled by default. The recent fix to re-enable all parts on initialization broke submit-only operations because the handler did not initialize on construction. This also removes duplicate initialization code.
This commit is contained in:
parent
bac4f79764
commit
6ae2f8e7ee
|
@ -62,14 +62,7 @@ cmCTestSubmitHandlerCurlDebugCallback(CURL *, curl_infotype, char *chPtr,
|
|||
//----------------------------------------------------------------------------
|
||||
cmCTestSubmitHandler::cmCTestSubmitHandler() : HTTPProxy(), FTPProxy()
|
||||
{
|
||||
this->HTTPProxy = "";
|
||||
this->HTTPProxyType = 0;
|
||||
this->HTTPProxyAuth = "";
|
||||
|
||||
this->FTPProxy = "";
|
||||
this->FTPProxyType = 0;
|
||||
this->CDash = false;
|
||||
|
||||
this->Initialize();
|
||||
}
|
||||
|
||||
//----------------------------------------------------------------------------
|
||||
|
|
Loading…
Reference in New Issue