Skip to content

Commit 8ddbac2

Browse files
BridgeARMylesBorins
authored andcommitted
tools: add log output to crashes
PR-URL: #20295 Reviewed-By: Richard Lau <[email protected]> Reviewed-By: Joyee Cheung <[email protected]> Reviewed-By: Matheus Marchini <[email protected]> Reviewed-By: Trivikram Kamat <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Refael Ackermann <[email protected]>
1 parent b47044a commit 8ddbac2

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

tools/test.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -298,10 +298,8 @@ def HasRun(self, output):
298298

299299
if output.HasCrashed():
300300
self.severity = 'crashed'
301-
exit_code = output.output.exit_code
302-
self.traceback = "oh no!\nexit code: " + PrintCrashed(exit_code)
303301

304-
if output.HasTimedOut():
302+
elif output.HasTimedOut():
305303
self.severity = 'fail'
306304

307305
else:

0 commit comments

Comments
 (0)