diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2009-09-11 17:34:35 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2009-09-11 17:34:35 (GMT) |
commit | 8a690289c205da90133e704439dc6f7ef1a08680 (patch) | |
tree | ec95de31ddfdba630a075688b59184de1fa1ea61 /Source/cmCTest.h | |
parent | 6a7eae718457e8ad9a91729f4c02a666e6ceba98 (diff) | |
download | CMake-8a690289c205da90133e704439dc6f7ef1a08680.zip CMake-8a690289c205da90133e704439dc6f7ef1a08680.tar.gz CMake-8a690289c205da90133e704439dc6f7ef1a08680.tar.bz2 |
Add label summary times to ctest default output. Also, remove parallel time output. Add flag to disable label summary.
Diffstat (limited to 'Source/cmCTest.h')
-rw-r--r-- | Source/cmCTest.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/cmCTest.h b/Source/cmCTest.h index 8ee837f..77bce1a 100644 --- a/Source/cmCTest.h +++ b/Source/cmCTest.h @@ -376,11 +376,13 @@ public: void SetStreams(std::ostream* out, std::ostream* err) { this->StreamOut = out; this->StreamErr = err; } void AddSiteProperties(std::ostream& ); + bool GetLabelSummary() { return this->LabelSummary;} private: std::string ConfigType; bool Verbose; bool ExtraVerbose; bool ProduceXML; + bool LabelSummary; bool Failover; bool BatchJobs; |