| Summary: | run_webkit_tests failed to print error message in python3 in linux_get_crash_log.py | ||||||
|---|---|---|---|---|---|---|---|
| Product: | WebKit | Reporter: | Aakash Jain <aakash_jain> | ||||
| Component: | Tools / Tests | Assignee: | Jonathan Bedard <jbedard> | ||||
| Status: | RESOLVED FIXED | ||||||
| Severity: | Normal | CC: | aakash_jain, ews-watchlist, glenn, jbedard, ryanhaddad, webkit-bug-importer | ||||
| Priority: | P2 | Keywords: | InRadar | ||||
| Version: | Other | ||||||
| Hardware: | Unspecified | ||||||
| OS: | Unspecified | ||||||
| Attachments: |
|
||||||
|
Description
Aakash Jain
2021-09-06 15:58:41 PDT
Created attachment 437503 [details]
Patch
Comment on attachment 437503 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=437503&action=review > Tools/Scripts/webkitpy/port/linux_get_crash_log.py:63 > + stdout = (b'ERROR: The gdb process exited with non-zero return code %s\n\n' % str(proc.returncode)) + stdout should we use {} and .format() instead of %s Comment on attachment 437503 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=437503&action=review >> Tools/Scripts/webkitpy/port/linux_get_crash_log.py:63 >> + stdout = (b'ERROR: The gdb process exited with non-zero return code %s\n\n' % str(proc.returncode)) + stdout > > should we use {} and .format() instead of %s Bytes don't have `.format()`, so we need to use %. Committed r282087 (241387@main): <https://commits.webkit.org/241387@main> All reviewed patches have been landed. Closing bug and clearing flags on attachment 437503 [details]. |