diff options
author | Zack Galbreath <zack.galbreath@kitware.com> | 2015-02-16 21:02:14 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2015-02-23 15:01:58 (GMT) |
commit | 1643b905e02473536d60ef4102d3154a6c8816d1 (patch) | |
tree | 197f97549c4459cf1d70421134cbf1fe4e697c66 /Source/CTest/cmCTestGenericHandler.h | |
parent | 12db113944860269b72093424b17ad2f86bccf2f (diff) | |
download | CMake-1643b905e02473536d60ef4102d3154a6c8816d1.zip CMake-1643b905e02473536d60ef4102d3154a6c8816d1.tar.gz CMake-1643b905e02473536d60ef4102d3154a6c8816d1.tar.bz2 |
ctest_submit: Add QUIET option
Specifying this option prevents CTest from printing any non-error
messages to the console for this call to ctest_submit().
Diffstat (limited to 'Source/CTest/cmCTestGenericHandler.h')
-rw-r--r-- | Source/CTest/cmCTestGenericHandler.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/CTest/cmCTestGenericHandler.h b/Source/CTest/cmCTestGenericHandler.h index 2788cba..8567dd7 100644 --- a/Source/CTest/cmCTestGenericHandler.h +++ b/Source/CTest/cmCTestGenericHandler.h @@ -87,6 +87,8 @@ public: int GetSubmitIndex() { return this->SubmitIndex; } void SetAppendXML(bool b) { this->AppendXML = b; } + void SetQuiet(bool b) { this->Quiet = b; } + bool GetQuiet() { return this->Quiet; } protected: bool StartResultingXML(cmCTest::Part part, @@ -94,6 +96,7 @@ protected: bool StartLogFile(const char* name, cmGeneratedFileStream& xofs); bool AppendXML; + bool Quiet; cmSystemTools::OutputOption HandlerVerbose; cmCTest *CTest; t_StringToString Options; |