Searched refs:HasFatalFailure (Results 1 - 3 of 3) sorted by relevance

/gem5/ext/googletest/googletest/test/
H A Dgtest_output_test_.cc78 // HasFatalFailure() outside of a TEST, TEST_F, or test fixture.
79 if (testing::Test::HasFatalFailure()) return;
136 // When calling HasFatalFailure() inside a TEST, TEST_F, or test
138 if (HasFatalFailure()) return;
144 // Tests HasFatalFailure() after a failed EXPECT check.
148 ASSERT_FALSE(HasFatalFailure()); // This should succeed.
/gem5/ext/googletest/googletest/include/gtest/
H A Dgtest.h400 static bool HasFatalFailure();
407 static bool HasFailure() { return HasFatalFailure() || HasNonfatalFailure(); }
545 bool HasFatalFailure() const;
/gem5/ext/googletest/googletest/src/
H A Dgtest.cc2184 bool TestResult::HasFatalFailure() const { function in class:testing::TestResult
2472 if (!HasFatalFailure()) {
2487 bool Test::HasFatalFailure() { function in class:testing::Test
2488 return internal::GetUnitTestImpl()->current_test_result()->HasFatalFailure();
2653 if ((test != NULL) && !Test::HasFatalFailure()) {
4646 if (!Test::HasFatalFailure()) {

Completed in 40 milliseconds