Title: [159816] trunk/PerformanceTests
Revision
159816
Author
[email protected]
Date
2013-11-27 08:12:34 -0800 (Wed, 27 Nov 2013)

Log Message

Build fix after r159805.

* resources/runner.js:

Modified Paths

Diff

Modified: trunk/PerformanceTests/ChangeLog (159815 => 159816)


--- trunk/PerformanceTests/ChangeLog	2013-11-27 15:55:18 UTC (rev 159815)
+++ trunk/PerformanceTests/ChangeLog	2013-11-27 16:12:34 UTC (rev 159816)
@@ -1,3 +1,9 @@
+2013-11-27  Ryosuke Niwa  <[email protected]>
+
+        Build fix after r159805.
+
+        * resources/runner.js:
+
 2013-11-26  Sergio Villar Senin  <[email protected]>
 
         [CSS Grid Layout] Support grid-definition-{rows|columns} repeat() syntax

Modified: trunk/PerformanceTests/resources/runner.js (159815 => 159816)


--- trunk/PerformanceTests/resources/runner.js	2013-11-27 15:55:18 UTC (rev 159815)
+++ trunk/PerformanceTests/resources/runner.js	2013-11-27 16:12:34 UTC (rev 159816)
@@ -226,11 +226,10 @@
                 PerfTestRunner.logStatistics(jsHeapResults, "bytes", prefix + ":JSHeap");
                 PerfTestRunner.logStatistics(mallocHeapResults, "bytes", prefix + ":Malloc");
             }
-            if (currentTest.done)
-                currentTest.done();
-
             if (logLines && !currentTest.continueTesting)
                 logLines.forEach(logInDocument);
+            if (currentTest.done)
+                currentTest.done();
         } catch (exception) {
             logInDocument("Got an exception while finalizing the test with name=" + exception.name + ", message=" + exception.message);
         }
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to