Searched refs:Passed (Results 1 - 13 of 13) sorted by relevance

/gem5/ext/googletest/googletest/test/
H A Dgtest-unittest-api_test.cc243 EXPECT_TRUE(unit_test->Passed());
256 EXPECT_TRUE(test_cases[0]->Passed());
275 EXPECT_TRUE(test_cases[2]->Passed());
290 EXPECT_TRUE(tests[1]->result()->Passed());
298 EXPECT_TRUE(tests[2]->result()->Passed());
306 EXPECT_TRUE(tests[3]->result()->Passed());
323 EXPECT_TRUE(tests[0]->result()->Passed());
H A Dgtest-test-part_test.cc130 TEST_F(TestPartResultTest, Passed) {
H A Dgtest-death-test_test.cc911 // The value a MockDeathTest will return from its Passed method.
918 // The arguments to the calls to Passed since the last call to
951 virtual bool Passed(bool exit_status_ok) { function in class:MockDeathTest
1063 // and that the Passed method returns false when the (simulated)
1078 // Tests that the Passed method was given the argument "true" when
H A Dgtest_unittest.cc1413 // Tests TestResult::Passed().
1414 TEST_F(TestResultTest, Passed) {
1415 ASSERT_TRUE(r0->Passed());
1416 ASSERT_TRUE(r1->Passed());
1417 ASSERT_FALSE(r2->Passed());
/gem5/ext/googletest/googletest/include/gtest/internal/
H A Dgtest-death-test-internal.h119 // than a function pointer or functor, or else Wait and Passed could
121 virtual bool Passed(bool exit_status_ok) = 0;
199 if (!gtest_dt->Passed(predicate(gtest_dt->Wait()))) { \
/gem5/ext/googletest/googletest/samples/
H A Dsample9_unittest.cc59 fprintf(stdout, "TEST %s\n", unit_test.Passed() ? "PASSED" : "FAILED");
/gem5/ext/testlib/
H A Dresult.py62 return self._metadata.result.value != state.Result.Passed
210 state.Result.Passed: 'tests'
233 state.Result.Passed: 'tests',
H A Drunner.py44 * Passed if all contained tests passed
65 return Result(Result.Passed)
142 self.testable.result = Result(Result.Passed)
H A Dhandlers.py194 state.Result.Passed: color.Green,
215 state.Result.Passed, state.Result.Errored):
244 most_severe_outcome = state.Result.Passed
/gem5/ext/googletest/googletest/src/
H A Dgtest-internal-inl.h567 bool Passed() const { return !Failed(); } function in class:testing::internal::UnitTestImpl
1116 SendLn("event=TestProgramEnd&passed=" + FormatBool(unit_test.Passed()));
1129 FormatBool(unit_test.Passed()) + "&elapsed_time=" +
1138 SendLn("event=TestCaseEnd&passed=" + FormatBool(test_case.Passed())
1149 FormatBool((test_info.result())->Passed()) +
H A Dgtest-death-test.cc388 virtual bool Passed(bool status_ok);
541 bool DeathTestImpl::Passed(bool status_ok) { function in class:testing::internal::DeathTestImpl
583 << "DeathTest::Passed somehow called before conclusion of test";
H A Dgtest.cc346 return test_case->should_run() && test_case->Passed();
3131 if (test_info.result()->Passed()) {
3182 if (!test_info.should_run() || test_info.result()->Passed()) {
3208 if (!unit_test.Passed()) {
4055 bool UnitTest::Passed() const { return impl()->Passed(); } function in class:testing::UnitTest
4666 if (!Passed()) {
/gem5/ext/googletest/googletest/include/gtest/
H A Dgtest.h539 bool Passed() const { return !Failed(); } function in class:testing::TestResult
835 bool Passed() const { return !Failed(); } function in class:testing::TestCase
895 return test_info->should_run() && test_info->result()->Passed();
1234 bool Passed() const;

Completed in 80 milliseconds