Title: [198338] releases/WebKitGTK/webkit-2.12/Tools
- Revision
- 198338
- Author
- [email protected]
- Date
- 2016-03-17 10:03:35 -0700 (Thu, 17 Mar 2016)
Log Message
Merge r197615 - [GTK] Fix logging details after r197505 (Run the run-benchmark script on the performance bot.)
https://bugs.webkit.org/show_bug.cgi?id=154595
Unreviewed.
* Scripts/webkitpy/benchmark_runner/run_benchmark.py:
(start): Use logging.exception when a test fails in order to get the details about the error.
Modified Paths
Diff
Modified: releases/WebKitGTK/webkit-2.12/Tools/ChangeLog (198337 => 198338)
--- releases/WebKitGTK/webkit-2.12/Tools/ChangeLog 2016-03-17 17:03:21 UTC (rev 198337)
+++ releases/WebKitGTK/webkit-2.12/Tools/ChangeLog 2016-03-17 17:03:35 UTC (rev 198338)
@@ -1,3 +1,13 @@
+2016-03-05 Carlos Alberto Lopez Perez <[email protected]>
+
+ [GTK] Fix logging details after r197505 (Run the run-benchmark script on the performance bot.)
+ https://bugs.webkit.org/show_bug.cgi?id=154595
+
+ Unreviewed.
+
+ * Scripts/webkitpy/benchmark_runner/run_benchmark.py:
+ (start): Use logging.exception when a test fails in order to get the details about the error.
+
2016-03-03 Carlos Alberto Lopez Perez <[email protected]>
[GTK] Run the run-benchmark script on the performance bot.
Modified: releases/WebKitGTK/webkit-2.12/Tools/Scripts/webkitpy/benchmark_runner/run_benchmark.py (198337 => 198338)
--- releases/WebKitGTK/webkit-2.12/Tools/Scripts/webkitpy/benchmark_runner/run_benchmark.py 2016-03-17 17:03:21 UTC (rev 198337)
+++ releases/WebKitGTK/webkit-2.12/Tools/Scripts/webkitpy/benchmark_runner/run_benchmark.py 2016-03-17 17:03:35 UTC (rev 198338)
@@ -62,7 +62,7 @@
raise
except:
failed.append(plan)
- _log.error('Error running benchmark plan: %s' % plan)
+ _log.exception('Error running benchmark plan: %s' % plan)
if failed:
_log.error('The following benchmark plans have failed: %s' % failed)
return len(failed)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes