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

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

Issue 2931693002: Explicitly set names for remaining stories in v8 benchmarks (Closed)
Patch Set: 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 | « no previous file | tools/perf/page_sets/v8_top_25.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/perf/page_sets/infinite_scroll_cases.py
diff --git a/tools/perf/page_sets/infinite_scroll_cases.py b/tools/perf/page_sets/infinite_scroll_cases.py
index 25221f0850cf82d3004812ab3df5d04d0571a000..1268f40860979bcd87f2147578efc6535ce11b9c 100644
--- a/tools/perf/page_sets/infinite_scroll_cases.py
+++ b/tools/perf/page_sets/infinite_scroll_cases.py
@@ -134,7 +134,8 @@ class InfiniteScrollStorySet(story.StorySet):
def __init__(self):
super(InfiniteScrollStorySet, self).__init__(
archive_data_file='data/infinite_scroll.json',
- cloud_storage_bucket=story.PARTNER_BUCKET)
+ cloud_storage_bucket=story.PARTNER_BUCKET,
+ verify_names=True)
for story_class in _FindInfiniteScrollStoryClasses(platforms.DESKTOP):
self.AddStory(story_class(self))
@@ -143,7 +144,8 @@ class MobileInfiniteScrollStorySet(story.StorySet):
def __init__(self):
super(MobileInfiniteScrollStorySet, self).__init__(
archive_data_file='data/mobile_infinite_scroll.json',
- cloud_storage_bucket=story.PARTNER_BUCKET)
+ cloud_storage_bucket=story.PARTNER_BUCKET,
+ verify_names=True)
for story_class in _FindInfiniteScrollStoryClasses(platforms.MOBILE):
self.AddStory(story_class(self))
« no previous file with comments | « no previous file | tools/perf/page_sets/v8_top_25.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698