[Performance Tests] [Chromium] Bindings/dom-attributes.html is timing out
authorharaken@chromium.org <haraken@chromium.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Mon, 27 Feb 2012 01:48:01 +0000 (01:48 +0000)
committerharaken@chromium.org <haraken@chromium.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Mon, 27 Feb 2012 01:48:01 +0000 (01:48 +0000)
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:

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@108942 268f45cc-cd09-0410-ab3c-d52691b4dbfc

PerformanceTests/Bindings/dom-attributes.html
PerformanceTests/ChangeLog

index c4e6c3b..bc4e446 100644 (file)
@@ -3,8 +3,8 @@
 <script src="../resources/runner.js"></script>
 <script>
 
-var getterRepeat = 3000000;
-var setterRepeat = 500000;
+var getterRepeat = 1500000;
+var setterRepeat = 250000;
 
 var times = {};
 
index dc70cfa..1b128fa 100644 (file)
@@ -1,3 +1,19 @@
+2012-02-26  Kentaro Hara  <haraken@chromium.org>
+
+        [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:
+
 2012-02-24  Ryosuke Niwa  <rniwa@webkit.org>
 
         Rename dom*_*attributes.html to dom*-*attributes.html to follow the WebKit convention.