[Perf tests] Reduce the number of loops in dom-attributes.html
authorharaken@chromium.org <haraken@chromium.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Wed, 7 Mar 2012 04:56:37 +0000 (04:56 +0000)
committerharaken@chromium.org <haraken@chromium.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Wed, 7 Mar 2012 04:56:37 +0000 (04:56 +0000)
https://bugs.webkit.org/show_bug.cgi?id=80077

Reviewed by Ryosuke Niwa.

dom-attributes.html takes 100~ seconds in the perf bots. This patch reduces
the time by reducing the number of loops.

This is just a temporary fix. After more detailed investigation, I will reduce
the number of tests in dom-attributes.html, and revert back the number of loops
to guarantee the reliability of the perf test results.

* Bindings/dom-attributes.html:

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

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

index bc4e446..8a6616a 100644 (file)
@@ -473,7 +473,7 @@ PerfTestRunner.run(function() {
                  },
                 ];
     runTests(tests);
-}, 1, undefined, onCompleted);
+}, 1, 5, onCompleted);
 
 function runTests(tests) {
     for (var i = 0; i < tests.length; i++) {
index acb85a9..1bc8812 100644 (file)
@@ -1,3 +1,19 @@
+2012-03-06  Kentaro Hara  <haraken@chromium.org>
+
+        [Perf tests] Reduce the number of loops in dom-attributes.html
+        https://bugs.webkit.org/show_bug.cgi?id=80077
+
+        Reviewed by Ryosuke Niwa.
+
+        dom-attributes.html takes 100~ seconds in the perf bots. This patch reduces
+        the time by reducing the number of loops.
+
+        This is just a temporary fix. After more detailed investigation, I will reduce
+        the number of tests in dom-attributes.html, and revert back the number of loops
+        to guarantee the reliability of the perf test results.
+
+        * Bindings/dom-attributes.html:
+
 2012-03-06  Ilya Tikhonovsky  <loislo@chromium.org>
 
         Web Inspector: Heap Snapshot test: split overal time metric into separate metrics.