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

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

Issue 2918383002: Explicitly setting name for oortonline stories (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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/perf/page_sets/oortonline.py
diff --git a/tools/perf/page_sets/oortonline.py b/tools/perf/page_sets/oortonline.py
index 6e1f6e8a11ef7dd5504f8040ac3017385b036f2f..312f580e240220f0d275e8220c8a39a6a3091818 100644
--- a/tools/perf/page_sets/oortonline.py
+++ b/tools/perf/page_sets/oortonline.py
@@ -24,7 +24,8 @@ class OortOnlinePage(page_module.Page):
url='http://oortonline.gl/#run', page_set=page_set,
shared_page_state_class=(
webgl_supported_shared_state.WebGLSupportedSharedState),
- make_javascript_deterministic=False)
+ make_javascript_deterministic=False,
+ name='http://oortonline.gl/#run')
self.archive_data_file = 'data/oortonline.json'
self.script_to_evaluate_on_commit = STARTUP_SCRIPT
@@ -42,7 +43,8 @@ class OortOnlinePageSet(story.StorySet):
def __init__(self):
super(OortOnlinePageSet, self).__init__(
archive_data_file='data/oortonline.json',
- cloud_storage_bucket=story.PARTNER_BUCKET)
+ cloud_storage_bucket=story.PARTNER_BUCKET,
+ verify_names=True)
self.AddStory(OortOnlinePage(self))
class OortOnlineTBMPage(OortOnlinePage):
@@ -76,5 +78,6 @@ class OortOnlineTBMPageSet(story.StorySet):
def __init__(self):
super(OortOnlineTBMPageSet, self).__init__(
archive_data_file='data/oortonline.json',
- cloud_storage_bucket=story.PARTNER_BUCKET)
+ cloud_storage_bucket=story.PARTNER_BUCKET,
+ verify_names=True)
self.AddStory(OortOnlineTBMPage(self))
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698