This commit is contained in:
Dan Adrian Avram 2025-03-29 21:19:39 +00:00 committed by GitHub
commit 55be022020
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 1 deletions

View file

@ -5457,7 +5457,8 @@ void UnitTest::AddTestPartResult(TestPartResult::Type result_type,
// in the code (perhaps in order to use Google Test assertions
// with another testing framework) and specify the former on the
// command line for debugging.
if (GTEST_FLAG_GET(break_on_failure)) {
if (GTEST_FLAG_GET(break_on_failure) &&
result_type != TestPartResult::kNonFatalFailure) {
#if defined(GTEST_OS_WINDOWS) && !defined(GTEST_OS_WINDOWS_PHONE) && \
!defined(GTEST_OS_WINDOWS_RT)
// Using DebugBreak on Windows allows gtest to still break into a debugger

View file

@ -54,6 +54,7 @@ int main(int argc, char** argv) {
std::set_terminate(&TerminateHandler);
#endif
testing::InitGoogleTest(&argc, argv);
GTEST_FLAG_SET(throw_on_failure, true);
// We want to ensure that people can use Google Test assertions in
// other testing frameworks, as long as they initialize Google Test