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

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
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..a1e5adae91f08ef3a9110b5287b2c7102ba31549 100644
--- a/tools/perf/page_sets/tough_filters_cases.py
+++ b/tools/perf/page_sets/tough_filters_cases.py
@@ -36,7 +36,8 @@ 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
@@ -47,5 +48,7 @@ class ToughFiltersCasesPageSet(story.StorySet):
for url in urls_list:
self.AddStory(ToughFiltersCasesPage(url, self))
- 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')
+ self.AddStory(PirateMarkPage(pirate_url, self, name=pirate_url))
Stephen White 2017/06/07 13:29:30 This one is pretty stable. Would you mind giving i
ashleymarie1 2017/06/07 20:52:51 Done.

Powered by Google App Engine
This is Rietveld 408576698