diff options
author | Betsy McPhail <betsy.mcphail@kitware.com> | 2017-06-23 17:03:05 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2017-07-10 20:25:18 (GMT) |
commit | 47b3a57c9bc5c7db608bc3b59b139a902535255f (patch) | |
tree | 127d1fc54ab81e5f69848772c74b46af5a15c5ad /Source/cmCTest.cxx | |
parent | d385962419ea3109dd21093c2368379f5fb51722 (diff) | |
download | CMake-47b3a57c9bc5c7db608bc3b59b139a902535255f.zip CMake-47b3a57c9bc5c7db608bc3b59b139a902535255f.tar.gz CMake-47b3a57c9bc5c7db608bc3b59b139a902535255f.tar.bz2 |
Display subproject timing summary
Use the '--no-subproject-summary' option to disable timing summary.
Diffstat (limited to 'Source/cmCTest.cxx')
-rw-r--r-- | Source/cmCTest.cxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/cmCTest.cxx b/Source/cmCTest.cxx index 1eedaf1..dfd7d6b 100644 --- a/Source/cmCTest.cxx +++ b/Source/cmCTest.cxx @@ -253,6 +253,7 @@ std::string cmCTest::DecodeURL(const std::string& in) cmCTest::cmCTest() { this->LabelSummary = true; + this->SubprojectSummary = true; this->ParallelLevel = 1; this->ParallelLevelSetInCli = false; this->TestLoad = 0; @@ -1794,6 +1795,9 @@ bool cmCTest::HandleCommandLineArguments(size_t& i, if (this->CheckArgument(arg, "--no-label-summary")) { this->LabelSummary = false; } + if (this->CheckArgument(arg, "--no-subproject-summary")) { + this->SubprojectSummary = false; + } if (this->CheckArgument(arg, "-Q", "--quiet")) { this->Quiet = true; } |