diff options
author | Zack Galbreath <zack.galbreath@kitware.com> | 2017-05-03 14:50:04 (GMT) |
---|---|---|
committer | Zack Galbreath <zack.galbreath@kitware.com> | 2017-05-04 16:21:21 (GMT) |
commit | 1a7d00bd12f261428edb8fef09461bee8067ceee (patch) | |
tree | 7d998892f75ff11470ff6c884d4e168bdddd6c63 /Source/CTest/cmCTestSubmitHandler.h | |
parent | 294cf948dc37799e1980685afbf1fa585ad5b0fb (diff) | |
download | CMake-1a7d00bd12f261428edb8fef09461bee8067ceee.zip CMake-1a7d00bd12f261428edb8fef09461bee8067ceee.tar.gz CMake-1a7d00bd12f261428edb8fef09461bee8067ceee.tar.bz2 |
ctest_submit: Add HTTPHEADER option
Allow CTest script writers to specify additional HTTP headers to be sent
to CDash during submission.
The motivating case for this feature is a corresponding change in CDash.
This will allow projects to refuse submissions from any site not bearing
a valid authentication token.
Diffstat (limited to 'Source/CTest/cmCTestSubmitHandler.h')
-rw-r--r-- | Source/CTest/cmCTestSubmitHandler.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Source/CTest/cmCTestSubmitHandler.h b/Source/CTest/cmCTestSubmitHandler.h index cf36546..2923f4f 100644 --- a/Source/CTest/cmCTestSubmitHandler.h +++ b/Source/CTest/cmCTestSubmitHandler.h @@ -43,6 +43,11 @@ public: // handle the cdash file upload protocol int HandleCDashUploadFile(std::string const& file, std::string const& type); + void SetHttpHeaders(std::vector<std::string> const& v) + { + this->HttpHeaders = v; + } + void ConstructCDashURL(std::string& dropMethod, std::string& url); private: @@ -95,6 +100,7 @@ private: bool HasWarnings; bool HasErrors; cmCTest::SetOfStrings Files; + std::vector<std::string> HttpHeaders; }; #endif |