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

Side by Side Diff: tools/perf/page_sets/tough_path_rendering_cases.py

Issue 2926633002: Explicitly setting story names for all smoothness benchmarks (Closed)
Patch Set: Explicitly setting story names for all smoothness benchmarks Created 3 years, 6 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 unified diff | Download patch
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 from telemetry.page import page as page_module 4 from telemetry.page import page as page_module
5 from telemetry import story 5 from telemetry import story
6 6
7 7
8 class ToughPathRenderingCasesPage(page_module.Page): 8 class ToughPathRenderingCasesPage(page_module.Page):
9 def RunPageInteractions(self, action_runner): 9 def RunPageInteractions(self, action_runner):
10 with action_runner.CreateInteraction('ClickStart'): 10 with action_runner.CreateInteraction('ClickStart'):
(...skipping 10 matching lines...) Expand all
21 21
22 class ToughPathRenderingCasesPageSet(story.StorySet): 22 class ToughPathRenderingCasesPageSet(story.StorySet):
23 23
24 """ 24 """
25 Description: Self-driven path rendering examples 25 Description: Self-driven path rendering examples
26 """ 26 """
27 27
28 def __init__(self): 28 def __init__(self):
29 super(ToughPathRenderingCasesPageSet, self).__init__( 29 super(ToughPathRenderingCasesPageSet, self).__init__(
30 archive_data_file='data/tough_path_rendering_cases.json', 30 archive_data_file='data/tough_path_rendering_cases.json',
31 cloud_storage_bucket=story.PARTNER_BUCKET) 31 cloud_storage_bucket=story.PARTNER_BUCKET,
32 verify_names=True)
32 33
33 page_list = [ 34 page_list = [
34 ('GUIMark Vector Chart Test', 35 ('GUIMark Vector Chart Test',
35 'http://www.craftymind.com/factory/guimark2/HTML5ChartingTest.html'), 36 'http://www.craftymind.com/factory/guimark2/HTML5ChartingTest.html'),
36 ('MotionMark Canvas Fill Shapes', 37 ('MotionMark Canvas Fill Shapes',
37 'http://rawgit.com/WebKit/webkit/master/PerformanceTests/MotionMark/develo per.html?test-name=Fillshapes&test-interval=20&display=minimal&tiles=big&control ler=fixed&frame-rate=50&kalman-process-error=1&kalman-measurement-error=4&time-m easurement=performance&suite-name=Canvassuite&complexity=1000'), # pylint: disab le=line-too-long 38 'http://rawgit.com/WebKit/webkit/master/PerformanceTests/MotionMark/develo per.html?test-name=Fillshapes&test-interval=20&display=minimal&tiles=big&control ler=fixed&frame-rate=50&kalman-process-error=1&kalman-measurement-error=4&time-m easurement=performance&suite-name=Canvassuite&complexity=1000'), # pylint: disab le=line-too-long
38 ('MotionMark Canvas Stroke Shapes', 39 ('MotionMark Canvas Stroke Shapes',
39 'http://rawgit.com/WebKit/webkit/master/PerformanceTests/MotionMark/develo per.html?test-name=Strokeshapes&test-interval=20&display=minimal&tiles=big&contr oller=fixed&frame-rate=50&kalman-process-error=1&kalman-measurement-error=4&time -measurement=performance&suite-name=Canvassuite&complexity=1000'), # pylint: dis able=line-too-long 40 'http://rawgit.com/WebKit/webkit/master/PerformanceTests/MotionMark/develo per.html?test-name=Strokeshapes&test-interval=20&display=minimal&tiles=big&contr oller=fixed&frame-rate=50&kalman-process-error=1&kalman-measurement-error=4&time -measurement=performance&suite-name=Canvassuite&complexity=1000'), # pylint: dis able=line-too-long
40 ] 41 ]
41 42
42 for name, url in page_list: 43 for name, url in page_list:
43 self.AddStory(ToughPathRenderingCasesPage(name=name, url=url, 44 self.AddStory(ToughPathRenderingCasesPage(name=name, url=url,
44 page_set=self)) 45 page_set=self))
45 46
46 # Chalkboard content linked from 47 # Chalkboard content linked from
47 # http://ie.microsoft.com/testdrive/Performance/Chalkboard/. 48 # http://ie.microsoft.com/testdrive/Performance/Chalkboard/.
48 self.AddStory(ChalkboardPage( 49 chalkboard_url = ('https://testdrive-archive.azurewebsites.net'
49 'https://testdrive-archive.azurewebsites.net/performance/chalkboard/', s elf)) 50 '/performance/chalkboard/')
51 name = 'IE Chalkboard'
52 self.AddStory(ChalkboardPage(chalkboard_url, self, name=name))
OLDNEW
« no previous file with comments | « tools/perf/page_sets/tough_image_decode_cases.py ('k') | tools/perf/page_sets/tough_pinch_zoom_cases.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698