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.cxx | |
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.cxx')
-rw-r--r-- | Source/cmCTest.cxx | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Source/cmCTest.cxx b/Source/cmCTest.cxx index d06a4a7..a8086b6 100644 --- a/Source/cmCTest.cxx +++ b/Source/cmCTest.cxx @@ -208,6 +208,7 @@ std::string cmCTest::DecodeURL(const std::string& in) //---------------------------------------------------------------------- cmCTest::cmCTest() { + this->LabelSummary = true; this->ParallelLevel = 1; this->SubmitIndex = 0; this->Failover = false; @@ -1738,6 +1739,10 @@ void cmCTest::HandleCommandLineArguments(size_t &i, { this->ShowLineNumbers = true; } + if(this->CheckArgument(arg, "--no-label-summary")) + { + this->LabelSummary = false; + } if(this->CheckArgument(arg, "-Q", "--quiet")) { this->Quiet = true; |