Skip to content

Commit

Permalink
tools: add log output to crashes
Browse files Browse the repository at this point in the history
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]>
  • Loading branch information
BridgeAR authored and MylesBorins committed Aug 17, 2018
1 parent 422b6e8 commit c56aafd
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions tools/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -298,10 +298,8 @@ def HasRun(self, output):

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:
Expand Down

0 comments on commit c56aafd

Please sign in to comment.