Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(446)

Unified Diff: tools/perf/page_sets/tough_path_rendering_cases.py

Issue 2680763003: Add MotionMark's <canvas> fill and stroke tests to telemetry. (Closed)
Patch Set: Simplify: call parent class constructor directly w/named arguments. Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tools/perf/page_sets/data/tough_path_rendering_cases_002.wpr.sha1 ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/perf/page_sets/tough_path_rendering_cases.py
diff --git a/tools/perf/page_sets/tough_path_rendering_cases.py b/tools/perf/page_sets/tough_path_rendering_cases.py
index 3b7ac0b171e274bac25668add41ff54f9d364d6c..626b545de3868b7d8eafbf0c3568f31f66a27da2 100644
--- a/tools/perf/page_sets/tough_path_rendering_cases.py
+++ b/tools/perf/page_sets/tough_path_rendering_cases.py
@@ -6,7 +6,6 @@ from telemetry import story
class ToughPathRenderingCasesPage(page_module.Page):
-
def RunPageInteractions(self, action_runner):
with action_runner.CreateInteraction('ClickStart'):
action_runner.Wait(10)
@@ -31,12 +30,18 @@ class ToughPathRenderingCasesPageSet(story.StorySet):
archive_data_file='data/tough_path_rendering_cases.json',
cloud_storage_bucket=story.PARTNER_BUCKET)
- urls_list = [
- 'http://www.craftymind.com/factory/guimark2/HTML5ChartingTest.html'
+ page_list = [
+ ('GUIMark Vector Chart Test',
+ 'http://www.craftymind.com/factory/guimark2/HTML5ChartingTest.html'),
+ ('MotionMark Canvas Fill Shapes',
+ 'http://rawgit.com/WebKit/webkit/master/PerformanceTests/MotionMark/developer.html?test-name=Fillshapes&test-interval=20&display=minimal&tiles=big&controller=fixed&frame-rate=50&kalman-process-error=1&kalman-measurement-error=4&time-measurement=performance&suite-name=Canvassuite&complexity=1000'), # pylint: disable=line-too-long
+ ('MotionMark Canvas Stroke Shapes',
+ 'http://rawgit.com/WebKit/webkit/master/PerformanceTests/MotionMark/developer.html?test-name=Strokeshapes&test-interval=20&display=minimal&tiles=big&controller=fixed&frame-rate=50&kalman-process-error=1&kalman-measurement-error=4&time-measurement=performance&suite-name=Canvassuite&complexity=1000'), # pylint: disable=line-too-long
]
- for url in urls_list:
- self.AddStory(ToughPathRenderingCasesPage(url, self))
+ for name, url in page_list:
+ self.AddStory(ToughPathRenderingCasesPage(name=name, url=url,
+ page_set=self))
# Chalkboard content linked from
# http://ie.microsoft.com/testdrive/Performance/Chalkboard/.
« no previous file with comments | « tools/perf/page_sets/data/tough_path_rendering_cases_002.wpr.sha1 ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698