Changeset 108942 in webkit


Ignore:
Timestamp:
Feb 26, 2012 5:48:01 PM (12 years ago)
Author:
haraken@chromium.org
Message:

[Performance Tests] [Chromium] Bindings/dom-attributes.html is timing out
https://bugs.webkit.org/show_bug.cgi?id=79593

Reviewed by Adam Barth.

This patch halves the execution time of Bindings/dom-attributes.html
in order to avoid timeout in Chromium. The reason for the timeout is that
V8 DOM bindings are too much slower than JSC bindings.
I am a bit afraid that this patch will reduce the accuracy of the
perf test results, but it would make sense to reduce the execution time
until we fix the performance issue in V8 DOM bindings.

  • Bindings/dom-attributes.html:
Location:
trunk/PerformanceTests
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/PerformanceTests/Bindings/dom-attributes.html

    r108846 r108942  
    44<script>
    55
    6 var getterRepeat = 3000000;
    7 var setterRepeat = 500000;
     6var getterRepeat = 1500000;
     7var setterRepeat = 250000;
    88
    99var times = {};
  • trunk/PerformanceTests/ChangeLog

    r108846 r108942  
     12012-02-26  Kentaro Hara  <haraken@chromium.org>
     2
     3        [Performance Tests] [Chromium] Bindings/dom-attributes.html is timing out
     4        https://bugs.webkit.org/show_bug.cgi?id=79593
     5
     6        Reviewed by Adam Barth.
     7
     8        This patch halves the execution time of Bindings/dom-attributes.html
     9        in order to avoid timeout in Chromium. The reason for the timeout is that
     10        V8 DOM bindings are too much slower than JSC bindings.
     11        I am a bit afraid that this patch will reduce the accuracy of the
     12        perf test results, but it would make sense to reduce the execution time
     13        until we fix the performance issue in V8 DOM bindings.
     14
     15        * Bindings/dom-attributes.html:
     16
    1172012-02-24  Ryosuke Niwa  <rniwa@webkit.org>
    218
Note: See TracChangeset for help on using the changeset viewer.