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

Function IsExitCodeCrashing

tools/v8-json-to-junit.py:39–42  ·  view source on GitHub ↗
(exit_code)

Source from the content-addressed store, hash-verified

37import xml.etree.ElementTree as ET
38
39def IsExitCodeCrashing(exit_code):
40 if utils.IsWindows():
41 return 0x80000000 & exit_code and not (0x3FFFFF00 & exit_code)
42 return exit_code < 0 and exit_code != -signal.SIGABRT
43
44
45class JUnitTestOutput:

Callers 1

MainFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…