diff options
author | Zack Galbreath <zack.galbreath@kitware.com> | 2016-01-13 14:49:40 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2016-01-13 15:32:24 (GMT) |
commit | a7393cbd40b4387d352413c48cec36b9d3cd0b51 (patch) | |
tree | 84b568c2c3bbbd9fad6de39158f1ddbceac4a234 /Source/CTest/cmCTestTestHandler.cxx | |
parent | 05ab4b7c66cccb7b04b05e252671f3628d4795fc (diff) | |
download | CMake-a7393cbd40b4387d352413c48cec36b9d3cd0b51.zip CMake-a7393cbd40b4387d352413c48cec36b9d3cd0b51.tar.gz CMake-a7393cbd40b4387d352413c48cec36b9d3cd0b51.tar.bz2 |
ctest_test: Report which tests failed even when QUIET is used
Since commit v3.3.0-rc1~410^2~3 (ctest_test: Add QUIET option,
2015-02-17) if tests fail when QUIET is used one sees:
The following tests FAILED:
but not the subsequent line(s) indicating which tests failed.
Restore the list of failed tests.
Diffstat (limited to 'Source/CTest/cmCTestTestHandler.cxx')
-rw-r--r-- | Source/CTest/cmCTestTestHandler.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/CTest/cmCTestTestHandler.cxx b/Source/CTest/cmCTestTestHandler.cxx index a8f983f..b6a4819 100644 --- a/Source/CTest/cmCTestTestHandler.cxx +++ b/Source/CTest/cmCTestTestHandler.cxx @@ -609,11 +609,11 @@ int cmCTestTestHandler::ProcessHandler() if ( ftit->Status != cmCTestTestHandler::COMPLETED ) { ofs << ftit->TestCount << ":" << ftit->Name << std::endl; - cmCTestOptionalLog(this->CTest, HANDLER_OUTPUT, "\t" << std::setw(3) + cmCTestLog(this->CTest, HANDLER_OUTPUT, "\t" << std::setw(3) << ftit->TestCount << " - " << ftit->Name << " (" << this->GetTestStatus(ftit->Status) << ")" - << std::endl, this->Quiet); + << std::endl); } } } |