Changeset 197615 in webkit


Ignore:
Timestamp:
Mar 5, 2016, 11:44:37 AM (9 years ago)
Author:
clopez@igalia.com
Message:

[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.

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r197601 r197615  
     12016-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
    1112016-03-04  Alexey Proskuryakov  <ap@apple.com>
    212
  • trunk/Tools/Scripts/webkitpy/benchmark_runner/run_benchmark.py

    r197505 r197615  
    6363            except:
    6464                failed.append(plan)
    65                 _log.error('Error running benchmark plan: %s' % plan)
     65                _log.exception('Error running benchmark plan: %s' % plan)
    6666        if failed:
    6767            _log.error('The following benchmark plans have failed: %s' % failed)
Note: See TracChangeset for help on using the changeset viewer.