Skip to content

Commit

Permalink
Turn PageLoad tests into simple performancetests, commit #2
Browse files Browse the repository at this point in the history
https://bugs.webkit.org/show_bug.cgi?id=99899

Reviewed by Ryosuke Niwa.

We cannot provide an elegant way to measure the memory consumption of the PageLoad tests, but we can turn them into simple
performance tests and measure their memory footprint and performance that way. This change moves and renames the related files
to their new location and adds html/js wrappers for them.

This is the #2 commit of the whole patch.

* PageLoad/svg/files/cacuts_01.svg: Removed.
* PageLoad/svg/files/cowboy.svg: Removed.
* PageLoad/svg/files/crawfish2_ganson.svg: Removed.
* SVG/Cactus.html: Added.
* SVG/Cowboy.html: Added.
* SVG/CrawFishGanson.html: Added.
* SVG/resources/Cactus.svg: Copied from PerformanceTests/PageLoad/svg/files/cacuts_01.svg.
* SVG/resources/Cowboy.svg: Copied from PerformanceTests/PageLoad/svg/files/cowboy.svg.
* SVG/resources/CrawFishGanson.svg: Copied from PerformanceTests/PageLoad/svg/files/crawfish2_ganson.svg.
* Skipped: Remove az-lizard_benji_park_01.svg from the skipped list.



git-svn-id: http://svn.webkit.org/repository/webkit/trunk@132506 268f45cc-cd09-0410-ab3c-d52691b4dbfc
  • Loading branch information
zhorvath committed Oct 25, 2012
1 parent 34b8316 commit e362578
Show file tree
Hide file tree
Showing 8 changed files with 51 additions and 1 deletion.
24 changes: 24 additions & 0 deletions PerformanceTests/ChangeLog
@@ -1,3 +1,27 @@
2012-10-24 Zoltan Horvath <zoltan@webkit.org>

Turn PageLoad tests into simple performancetests, commit #2
https://bugs.webkit.org/show_bug.cgi?id=99899

Reviewed by Ryosuke Niwa.

We cannot provide an elegant way to measure the memory consumption of the PageLoad tests, but we can turn them into simple
performance tests and measure their memory footprint and performance that way. This change moves and renames the related files
to their new location and adds html/js wrappers for them.

This is the #2 commit of the whole patch.

* PageLoad/svg/files/cacuts_01.svg: Removed.
* PageLoad/svg/files/cowboy.svg: Removed.
* PageLoad/svg/files/crawfish2_ganson.svg: Removed.
* SVG/Cactus.html: Added.
* SVG/Cowboy.html: Added.
* SVG/CrawFishGanson.html: Added.
* SVG/resources/Cactus.svg: Copied from PerformanceTests/PageLoad/svg/files/cacuts_01.svg.
* SVG/resources/Cowboy.svg: Copied from PerformanceTests/PageLoad/svg/files/cowboy.svg.
* SVG/resources/CrawFishGanson.svg: Copied from PerformanceTests/PageLoad/svg/files/crawfish2_ganson.svg.
* Skipped: Remove az-lizard_benji_park_01.svg from the skipped list.

2012-10-24 Zoltan Horvath <zoltan@webkit.org>

Turn PageLoad tests into simple performancetests, commit #1
Expand Down
9 changes: 9 additions & 0 deletions PerformanceTests/SVG/Cactus.html
@@ -0,0 +1,9 @@
<!DOCTYPE html>
<body>
<script src="../resources/runner.js"></script>
<script>
window.onload = function() {
PerfTestRunner.measurePageLoadTime({path: "resources/Cactus.svg"});
}
</script>
</body>
9 changes: 9 additions & 0 deletions PerformanceTests/SVG/Cowboy.html
@@ -0,0 +1,9 @@
<!DOCTYPE html>
<body>
<script src="../resources/runner.js"></script>
<script>
window.onload = function() {
PerfTestRunner.measurePageLoadTime({path: "resources/Cowboy.svg"});
}
</script>
</body>
9 changes: 9 additions & 0 deletions PerformanceTests/SVG/CrawFishGanson.html
@@ -0,0 +1,9 @@
<!DOCTYPE html>
<body>
<script src="../resources/runner.js"></script>
<script>
window.onload = function() {
PerfTestRunner.measurePageLoadTime({path: "resources/CrawFishGanson.svg"});
}
</script>
</body>
File renamed without changes
File renamed without changes
1 change: 0 additions & 1 deletion PerformanceTests/Skipped
Expand Up @@ -7,7 +7,6 @@ PageLoad/svg/files/33041-Samurai.svg
# Takes too long to load
PageLoad/svg/files/Sierpinski_carpet_6.svg

PageLoad/svg/files/az-lizard_benji_park_01.svg
PageLoad/svg/files/france.svg
PageLoad/svg/files/francobollo_gnome_ezechi_02.svg
PageLoad/svg/files/gearflowers.svg
Expand Down

0 comments on commit e362578

Please sign in to comment.