diff options
author | Zack Galbreath <zack.galbreath@kitware.com> | 2017-01-04 17:54:01 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2017-01-20 16:37:27 (GMT) |
commit | 0ce7643a84eabfc1c1083d2f3ecccfae6d04836a (patch) | |
tree | 892f87bac8dbe7981fc0d0eb1b1b8044babf2fa1 /Source/CTest/cmCTestCurl.h | |
parent | 5614a5cd1f7f8fe34f6b31c572476a2ddfd6d9ae (diff) | |
download | CMake-0ce7643a84eabfc1c1083d2f3ecccfae6d04836a.zip CMake-0ce7643a84eabfc1c1083d2f3ecccfae6d04836a.tar.gz CMake-0ce7643a84eabfc1c1083d2f3ecccfae6d04836a.tar.bz2 |
ctest_submit: improve handling of QUIET option
Teach the CDASH_UPLOAD signature of ctest_submit() to more thoroughly
respect the QUIET option.
Diffstat (limited to 'Source/CTest/cmCTestCurl.h')
-rw-r--r-- | Source/CTest/cmCTestCurl.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/CTest/cmCTestCurl.h b/Source/CTest/cmCTestCurl.h index 17fbcff..cdce393 100644 --- a/Source/CTest/cmCTestCurl.h +++ b/Source/CTest/cmCTestCurl.h @@ -25,6 +25,7 @@ public: void SetCurlOptions(std::vector<std::string> const& args); void SetUseHttp10On() { this->UseHttp10 = true; } void SetTimeOutSeconds(int s) { this->TimeOutSeconds = s; } + void SetQuiet(bool b) { this->Quiet = b; } std::string Escape(std::string const& source); protected: @@ -40,6 +41,7 @@ private: bool VerifyHostOff; bool VerifyPeerOff; bool UseHttp10; + bool Quiet; int TimeOutSeconds; }; |