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

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

Issue 2924643002: Explicitly setting names for stories in the power 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/idle_platform.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/perf/page_sets/android_acceptance.py
diff --git a/tools/perf/page_sets/android_acceptance.py b/tools/perf/page_sets/android_acceptance.py
index e17fbcd0d5d133a77cb3f2bec978f80d236d2b04..95b3ece9ed356e72b14a6d35f708253477b63288 100644
--- a/tools/perf/page_sets/android_acceptance.py
+++ b/tools/perf/page_sets/android_acceptance.py
@@ -27,7 +27,8 @@ class AndroidAcceptancePageSet(story.StorySet):
def __init__(self):
super(AndroidAcceptancePageSet, self).__init__(
archive_data_file='data/android_acceptance.json',
- cloud_storage_bucket=story.PARTNER_BUCKET)
+ cloud_storage_bucket=story.PARTNER_BUCKET,
+ verify_names=True)
urls_list = [
'http://www.amazon.com',
@@ -36,4 +37,4 @@ class AndroidAcceptancePageSet(story.StorySet):
]
for url in urls_list:
- self.AddStory(AndroidAcceptancePage(url, self))
+ self.AddStory(AndroidAcceptancePage(url, self, name=url))
« no previous file with comments | « no previous file | tools/perf/page_sets/idle_platform.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698