MCPcopy Index your code
hub / github.com/nodejs/node / HasCrashed

Method HasCrashed

deps/v8/tools/testrunner/objects/output.py:60–68  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

58 return other
59
60 def HasCrashed(self):
61 if utils.IsWindows():
62 return 0x80000000 & self.exit_code and not (0x3FFFFF00 & self.exit_code)
63 else:
64 # Timed out tests will have exit_code -signal.SIGTERM.
65 if self.timed_out:
66 return False
67 return (self.exit_code < 0 and
68 self.exit_code != -signal.SIGABRT)
69
70 def HasTimedOut(self):
71 return self.timed_out

Callers 7

IsSuccessMethod · 0.95
get_outcomeMethod · 0.45
statusMethod · 0.45
formatted_result_outputFunction · 0.45
on_test_resultMethod · 0.45
on_test_resultMethod · 0.45
on_test_resultMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected