Searched refs:failed (Results 1 - 19 of 19) sorted by relevance

/gem5/ext/googletest/googletest/xcode/Samples/FrameworkSample/
H A Druntests.sh41 # Now execute each one in turn keeping track of how many succeeded and failed.
43 failed=0
51 failed=$(( failed + 1 ))
57 echo "Tests complete with $succeeded successes and $failed failures."
58 if [ $failed -ne 0 ]; then
59 echo "The following tests failed:"
62 exit $failed
/gem5/ext/googletest/googletest/xcode/Scripts/
H A Druntests.sh44 # Now execute each one in turn keeping track of how many succeeded and failed.
46 failed=0
54 failed=$(( failed + 1 ))
60 echo "Tests complete with $succeeded successes and $failed failures."
61 if [ $failed -ne 0 ]; then
62 echo "The following tests failed:"
65 exit $failed
/gem5/src/sim/power/
H A Dmathexpr_powermodel.cc51 : PowerModelState(p), dyn_expr(p->dyn), st_expr(p->st), failed(false)
78 const bool st_failed = failed;
81 const bool dyn_failed = failed;
101 panic_if(failed, "Failed to evaluate power expression '%s'\n",
110 failed = false;
138 failed = true;
H A Dmathexpr_powermodel.hh103 * failed if evaluation failed.
121 mutable bool failed; member in class:MathExprPowerModel
/gem5/ext/googletest/googletest/test/
H A Dgtest-test-part_test.cc82 EXPECT_FALSE(success.failed());
91 EXPECT_TRUE(nonfatal_failure.failed());
100 EXPECT_TRUE(fatal_failure.failed());
136 // Tests TestPartResult::failed().
138 EXPECT_FALSE(r1_.failed());
139 EXPECT_TRUE(r2_.failed());
140 EXPECT_TRUE(r3_.failed());
H A Dgtest_throw_on_failure_test.py118 failed = not Run(command)
126 self.assert_(failed == should_fail, msg)
H A Dgtest_unittest.cc148 TestPartResult::kFatalFailure, "foo.cc", 42, "failed=\n&%"));
152 "event=TestPartResult&file=foo.cc&line=42&message=failed%3D%0A%26%25\n",
1400 EXPECT_EQ(expected.failed(), actual.failed());
3261 // failed EXPECT_STRCASEEQ
3283 // failed EXPECT_TRUE
3292 // failed EXPECT_LT
3322 // failed EXPECT_THROW, throws different
3329 // failed EXPECT_THROW, throws nothing
3337 // failed EXPECT_NO_THRO
[all...]
/gem5/tests/gem5/
H A Dverifier.py52 def failed(self, fixtures): member in class:Verifier
95 self.failed(fixtures)
199 self.failed(fixtures)
/gem5/ext/testlib/
H A Drunner.py46 * Failed if no tests errored, but one or more failed.
49 failed = []
57 failed.append(result.reason)
60 if failed:
61 return Result(Result.Failed, failed)
H A Dmain.py272 failed = log_handler.unsuccessful()
276 return 1 if failed else 0
/gem5/src/systemc/tests/
H A Dverify.py360 def failed(self, test, cause, note=''): member in class:VerifyPhase
368 print('Passed: {passed:4} - Failed: {failed:4}'.format(
369 passed=total_passed, failed=total_failed))
374 'failed': {
411 help='Don\'t print a list of tests that passed or failed')
423 self.failed(test, 'compile failed')
435 self.failed(test, 'time out')
439 self.failed(test, 'abort')
441 self.failed(tes
[all...]
/gem5/ext/googletest/googletest/include/gtest/
H A Dgtest-test-part.h93 // Returns true iff the test part failed.
94 bool failed() const { return type_ != kSuccess; } function in class:testing::TestPartResult
96 // Returns true iff the test part non-fatally failed.
99 // Returns true iff the test part fatally failed.
/gem5/ext/googletest/googletest/samples/
H A Dsample9_unittest.cc72 // Called after a failed assertion or a SUCCEED() invocation.
76 test_part_result.failed() ? "*** Failure" : "Success",
146 // Counts failed tests that were not meant to fail (those without
/gem5/src/mem/cache/prefetch/
H A Dqueued.cc89 bool failed = (fault != NoFault); local
90 owner->translationComplete(this, failed);
269 QueuedPrefetcher::translationComplete(DeferredPacket *dp, bool failed) argument
279 if (!failed) {
298 DPRINTF(HWPrefetch, "%s Translation of vaddr %#x failed, dropping "
H A Dqueued.hh220 * @param failed whether the translation was successful
222 void translationComplete(DeferredPacket *dp, bool failed);
/gem5/tests/testing/
H A Dresults.py56 - STATE_ERROR: The test failed to run.
57 - STATE_FAILED: Test ran, but failed.
60 subtle. In a gem5 context, STATE_ERROR would mean that gem5 failed
62 failed (e.g., statistics mismatch).
125 def failed(self): member in class:TestResult
/gem5/src/dev/virtio/
H A Dbase.hh585 Bitfield<7> failed; member in class:VirtIODeviceBase
H A Dbase.cc402 status.acknowledge, status.driver, status.driver_ok, status.failed);
/gem5/ext/googletest/googletest/src/
H A Dgtest.cc210 "True iff a failed assertion should be a debugger break-point.");
295 "When this flag is specified, a failed assertion will throw an exception "
349 // Returns true iff the test case failed.
734 // Gets the number of failed test cases.
755 // Gets the number of failed tests.
1014 // Makes a failed assertion result.
1019 // Makes a failed assertion result with the given failure message.
2169 // Returns true iff the test failed.
2172 if (GetTestPartResult(i).failed())
2178 // Returns true iff the test part fatally failed
4606 bool failed = false; local
[all...]

Completed in 64 milliseconds