[Cmake-commits] CMake branch, next, updated. v3.4.1-1950-g1e6e2d6
Zack Galbreath
zack.galbreath at kitware.com
Wed Jan 13 09:50: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 1e6e2d6c5bc43ad9ff65f2e4e554fb15c70437b4 (commit)
via 9a5ed4dfee23cee7aaaabc1b731cc2aa6cad6c46 (commit)
from 1ead8ced6b1e6132923a6da0a410b005bb48a694 (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=1e6e2d6c5bc43ad9ff65f2e4e554fb15c70437b4
commit 1e6e2d6c5bc43ad9ff65f2e4e554fb15c70437b4
Merge: 1ead8ce 9a5ed4d
Author: Zack Galbreath <zack.galbreath at kitware.com>
AuthorDate: Wed Jan 13 09:50:33 2016 -0500
Commit: CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Wed Jan 13 09:50:33 2016 -0500
Merge topic 'report_failed_tests' into next
9a5ed4df Always report which tests failed
https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=9a5ed4dfee23cee7aaaabc1b731cc2aa6cad6c46
commit 9a5ed4dfee23cee7aaaabc1b731cc2aa6cad6c46
Author: Zack Galbreath <zack.galbreath at kitware.com>
AuthorDate: Wed Jan 13 09:49:40 2016 -0500
Commit: Zack Galbreath <zack.galbreath at kitware.com>
CommitDate: Wed Jan 13 09:49:40 2016 -0500
Always report which tests failed
This commit fixes a bug in the implementation of the QUIET
option of ctest_test. Prior to this commit, if any tests
failed you would see:
The following tests FAILED:
...but not the subsequent line(s) indicating which tests failed.
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:
Source/CTest/cmCTestTestHandler.cxx | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
hooks/post-receive
--
CMake
More information about the Cmake-commits
mailing list