https://bugs.webkit.org/show_bug.cgi?id=93617
Reviewed by Adam Barth.
Since we added memory measurement support to performance tests we need to modify these tests.
* Animation/balls.html:
* Dromaeo/resources/dromaeorunner.js:
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@125179
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
var stats = PerfTestRunner.computeStatistics(frameRates, "fps");
statistics.push(stats);
- PerfTestRunner.printStatistics(stats);
+ PerfTestRunner.printStatistics(stats, "Time:");
+ PerfTestRunner.getAndPrintMemoryStatistics();
if (++run < MAX_RUNS) {
PerfTestRunner.log("<br>===================================================<br>");
2012-08-09 Zoltan Horvath <zoltan@webkit.org>
+ Add memory measurement to balls.html and dromaeorunner.js
+ https://bugs.webkit.org/show_bug.cgi?id=93617
+
+ Reviewed by Adam Barth.
+
+ Since we added memory measurement support to performance tests we need to modify these tests.
+
+ * Animation/balls.html:
+ * Dromaeo/resources/dromaeorunner.js:
+
+2012-08-09 Zoltan Horvath <zoltan@webkit.org>
+
JSHeap and FastMallocStatistics based memory measurement for performance-tests
https://bugs.webkit.org/show_bug.cgi?id=90858
teardown: function(data) {
var scores = DRT.computeScores(data.result);
- PerfTestRunner.printStatistics(scores);
+ PerfTestRunner.printStatistics(scores, "Time:");
+ PerfTestRunner.getAndPrintMemoryStatistics();
window.setTimeout(function() {
if (window.testRunner)
testRunner.notifyDone();
this.prep = DRT.targetDelegateOf("prep");
window.DRT = DRT;
- })();
\ No newline at end of file
+ })();