summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorRuben Bridgewater <ruben@bridgewater.de>2018-04-25 17:51:32 +0200
committerMyles Borins <mylesborins@google.com>2018-08-17 16:15:08 -0400
commitc56aafd645eab3dd7c023348f924df6f972d0864 (patch)
tree5618bd6a1324124ce98bb7fd301dce66eb176d6e /tools
parent422b6e8b9fe1adca1539f69eec8eae3aac8c538a (diff)
downloadnode-new-c56aafd645eab3dd7c023348f924df6f972d0864.tar.gz
tools: add log output to crashes
PR-URL: https://github.com/nodejs/node/pull/20295 Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Matheus Marchini <matheus@sthima.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Refael Ackermann <refack@gmail.com>
Diffstat (limited to 'tools')
-rwxr-xr-xtools/test.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/tools/test.py b/tools/test.py
index 3b420b7a8a..dafcc3d2ad 100755
--- a/tools/test.py
+++ b/tools/test.py
@@ -298,10 +298,8 @@ class TapProgressIndicator(SimpleProgressIndicator):
if output.HasCrashed():
self.severity = 'crashed'
- exit_code = output.output.exit_code
- self.traceback = "oh no!\nexit code: " + PrintCrashed(exit_code)
- if output.HasTimedOut():
+ elif output.HasTimedOut():
self.severity = 'fail'
else: