Changeset 197615 in webkit
- Timestamp:
- Mar 5, 2016, 11:44:37 AM (9 years ago)
- Location:
- trunk/Tools
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Tools/ChangeLog
r197601 r197615 1 2016-03-05 Carlos Alberto Lopez Perez <clopez@igalia.com> 2 3 [GTK] Fix logging details after r197505 (Run the run-benchmark script on the performance bot.) 4 https://bugs.webkit.org/show_bug.cgi?id=154595 5 6 Unreviewed. 7 8 * Scripts/webkitpy/benchmark_runner/run_benchmark.py: 9 (start): Use logging.exception when a test fails in order to get the details about the error. 10 1 11 2016-03-04 Alexey Proskuryakov <ap@apple.com> 2 12 -
trunk/Tools/Scripts/webkitpy/benchmark_runner/run_benchmark.py
r197505 r197615 63 63 except: 64 64 failed.append(plan) 65 _log.e rror('Error running benchmark plan: %s' % plan)65 _log.exception('Error running benchmark plan: %s' % plan) 66 66 if failed: 67 67 _log.error('The following benchmark plans have failed: %s' % failed)
Note:
See TracChangeset
for help on using the changeset viewer.