Skip to content

Commit 617843f

Browse files
committed
tools: treat SIGABRT as crash
Otherwise, potentially no output is shown for aborts. Refs: nodejs#19903
1 parent 565fd50 commit 617843f

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

tools/test.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -582,8 +582,7 @@ def HasCrashed(self):
582582
# Timed out tests will have exit_code -signal.SIGTERM.
583583
if self.output.timed_out:
584584
return False
585-
return self.output.exit_code < 0 and \
586-
self.output.exit_code != -signal.SIGABRT
585+
return self.output.exit_code < 0
587586

588587
def HasTimedOut(self):
589588
return self.output.timed_out;

0 commit comments

Comments
 (0)