[Cmake-commits] CMake branch, next, updated. v3.4.1-1958-ge584aa9

Brad King brad.king at kitware.com
Thu Jan 14 11:20:34 EST 2016


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "CMake".

The branch, next has been updated
       via  e584aa916a85ec45a19e751e2c224b97231ff02e (commit)
       via  a7393cbd40b4387d352413c48cec36b9d3cd0b51 (commit)
      from  0a9d80385666d819587a5761d0a1f4a9f9e1edfa (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=e584aa916a85ec45a19e751e2c224b97231ff02e
commit e584aa916a85ec45a19e751e2c224b97231ff02e
Merge: 0a9d803 a7393cb
Author:     Brad King <brad.king at kitware.com>
AuthorDate: Thu Jan 14 11:20:33 2016 -0500
Commit:     CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Thu Jan 14 11:20:33 2016 -0500

    Merge topic 'report_failed_tests' into next
    
    a7393cbd ctest_test: Report which tests failed even when QUIET is used


https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=a7393cbd40b4387d352413c48cec36b9d3cd0b51
commit a7393cbd40b4387d352413c48cec36b9d3cd0b51
Author:     Zack Galbreath <zack.galbreath at kitware.com>
AuthorDate: Wed Jan 13 09:49:40 2016 -0500
Commit:     Brad King <brad.king at kitware.com>
CommitDate: Wed Jan 13 10:32:24 2016 -0500

    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.

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);
           }
         }
       }

-----------------------------------------------------------------------

Summary of changes:


hooks/post-receive
-- 
CMake


More information about the Cmake-commits mailing list