diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2017-09-06 16:03:40 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2017-09-08 14:02:39 (GMT) |
commit | a6e32eb0c26277c71c586aba457df5daaf2a71ba (patch) | |
tree | 8bc7b58fc6ae9598bfdf4c5edcbb3589062b52de /Source/CTest/cmCTestTestHandler.h | |
parent | d4f58a9cd8e3709a0cb176814226da324b17e0fe (diff) | |
download | CMake-a6e32eb0c26277c71c586aba457df5daaf2a71ba.zip CMake-a6e32eb0c26277c71c586aba457df5daaf2a71ba.tar.gz CMake-a6e32eb0c26277c71c586aba457df5daaf2a71ba.tar.bz2 |
CTest: Split out labels and subproject labels in summary output
This commit splits out the reporting of labels and labels used for sub
projects. If a label is a sub project label it will not be included in
the label summary. To implement this the commit creates
PrintLabelOrSubprojectSummary which is able to do the work of both
PrintLabelSummary and PrintSubprojectSummary avoiding code duplication.
Diffstat (limited to 'Source/CTest/cmCTestTestHandler.h')
-rw-r--r-- | Source/CTest/cmCTestTestHandler.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Source/CTest/cmCTestTestHandler.h b/Source/CTest/cmCTestTestHandler.h index 965552c..4c5b55f 100644 --- a/Source/CTest/cmCTestTestHandler.h +++ b/Source/CTest/cmCTestTestHandler.h @@ -232,8 +232,7 @@ private: */ virtual void GenerateDartOutput(cmXMLWriter& xml); - void PrintLabelSummary(); - void PrintSubprojectSummary(); + void PrintLabelOrSubprojectSummary(bool isSubProject); /** * Run the tests for a directory and any subdirectories |