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 <[email protected]>
AuthorDate: Thu Jan 14 11:20:33 2016 -0500
Commit:     CMake Topic Stage <[email protected]>
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 <[email protected]>
AuthorDate: Wed Jan 13 09:49:40 2016 -0500
Commit:     Brad King <[email protected]>
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
_______________________________________________
Cmake-commits mailing list
[email protected]
http://public.kitware.com/mailman/listinfo/cmake-commits

Reply via email to