summaryrefslogtreecommitdiff
path: root/Source/CTest/cmCTestGenericHandler.h
diff options
context:
space:
mode:
authorZack Galbreath <zack.galbreath@kitware.com>2015-02-16 16:02:14 -0500
committerBrad King <brad.king@kitware.com>2015-02-23 10:01:58 -0500
commit1643b905e02473536d60ef4102d3154a6c8816d1 (patch)
tree197f97549c4459cf1d70421134cbf1fe4e697c66 /Source/CTest/cmCTestGenericHandler.h
parent12db113944860269b72093424b17ad2f86bccf2f (diff)
downloadcmake-1643b905e02473536d60ef4102d3154a6c8816d1.tar.gz
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.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/CTest/cmCTestGenericHandler.h b/Source/CTest/cmCTestGenericHandler.h
index 2788cba57a..8567dd7cd2 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;