summaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
Diffstat (limited to 'Source')
-rw-r--r--Source/CTest/cmCTestSubmitHandler.cxx9
1 files changed, 5 insertions, 4 deletions
diff --git a/Source/CTest/cmCTestSubmitHandler.cxx b/Source/CTest/cmCTestSubmitHandler.cxx
index d5e0434..8fb87e0 100644
--- a/Source/CTest/cmCTestSubmitHandler.cxx
+++ b/Source/CTest/cmCTestSubmitHandler.cxx
@@ -1010,14 +1010,15 @@ int cmCTestSubmitHandler::ProcessHandler()
return 0;
}
}
- else if ( dropMethod == "http" )
+ else if ( dropMethod == "http" || dropMethod == "https" )
{
+ std::string url = dropMethod;
+ url += "://";
ofs << "Using drop method: HTTP" << std::endl;
cmCTestLog(this->CTest, HANDLER_OUTPUT, " Using HTTP submit method"
<< std::endl
- << " Drop site: http://");
- std::string url = "http://";
- if ( this->CTest->GetCTestConfiguration("DropSiteUser").size() > 0 )
+ << " Drop site:" << url);
+ if ( this->CTest->GetCTestConfiguration("DropSiteUser").size() > 0 )
{
url += this->CTest->GetCTestConfiguration("DropSiteUser");
cmCTestLog(this->CTest, HANDLER_OUTPUT,