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

Unified Diff: tools/perf/page_sets/tough_filters_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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tools/perf/page_sets/tough_canvas_cases.py ('k') | tools/perf/page_sets/tough_image_decode_cases.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/perf/page_sets/tough_filters_cases.py
diff --git a/tools/perf/page_sets/tough_filters_cases.py b/tools/perf/page_sets/tough_filters_cases.py
index 36b41276f978fd885a469080728a2436376dbc63..7aa88c87916f2dea256d05e3f4a1962db2610aef 100644
--- a/tools/perf/page_sets/tough_filters_cases.py
+++ b/tools/perf/page_sets/tough_filters_cases.py
@@ -7,9 +7,7 @@ from telemetry import story
class ToughFiltersCasesPage(page_module.Page):
- def __init__(self, url, page_set):
- # Truncate the url to be the name, see crbug.com/662941
- name = url[:100]
+ def __init__(self, url, page_set, name):
super(ToughFiltersCasesPage, self).__init__(
url=url, page_set=page_set, name=name)
@@ -36,16 +34,23 @@ class ToughFiltersCasesPageSet(story.StorySet):
def __init__(self):
super(ToughFiltersCasesPageSet, self).__init__(
archive_data_file='data/tough_filters_cases.json',
- cloud_storage_bucket=story.PARTNER_BUCKET)
+ cloud_storage_bucket=story.PARTNER_BUCKET,
+ verify_names=True)
urls_list = [
- 'http://rawgit.com/WebKit/webkit/master/PerformanceTests/Animometer/developer.html?test-interval=20&display=minimal&controller=fixed&frame-rate=50&kalman-process-error=1&kalman-measurement-error=4&time-measurement=performance&suite-name=Animometer&test-name=Focus&complexity=100', # pylint: disable=line-too-long
- 'http://letmespellitoutforyou.com/samples/svg/filter_terrain.svg',
- 'http://static.bobdo.net/Analog_Clock.svg',
+ ('http://rawgit.com/WebKit/webkit/master/PerformanceTests/Animometer/developer.html?test-interval=20&display=minimal&controller=fixed&frame-rate=50&kalman-process-error=1&kalman-measurement-error=4&time-measurement=performance&suite-name=Animometer&test-name=Focus&complexity=100', # pylint: disable=line-too-long
+ 'MotionMark Focus'),
+ ('http://letmespellitoutforyou.com/samples/svg/filter_terrain.svg',
+ 'Filter Terrain SVG'),
+ ('http://static.bobdo.net/Analog_Clock.svg',
+ 'Analog Clock SVG'),
]
- for url in urls_list:
- self.AddStory(ToughFiltersCasesPage(url, self))
+ for url, name in urls_list:
+ self.AddStory(ToughFiltersCasesPage(url, self, name))
- self.AddStory(PirateMarkPage(
- 'http://web.archive.org/web/20150502135732/http://ie.microsoft.com/testdrive/Performance/Pirates/Default.html', self)) # pylint: disable=line-too-long
+ pirate_url = ('http://web.archive.org/web/20150502135732/'
+ 'http://ie.microsoft.com/testdrive/Performance/'
+ 'Pirates/Default.html')
+ name = 'IE PirateMark'
+ self.AddStory(PirateMarkPage(pirate_url, self, name=name))
« no previous file with comments | « tools/perf/page_sets/tough_canvas_cases.py ('k') | tools/perf/page_sets/tough_image_decode_cases.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698