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/steady_state.py

Issue 2271793003: Add a new benchmark for cpu power measurements on steady state sites. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 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/data/steady_state_000.wpr.sha1 ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/perf/page_sets/steady_state.py
diff --git a/tools/perf/page_sets/steady_state.py b/tools/perf/page_sets/steady_state.py
new file mode 100644
index 0000000000000000000000000000000000000000..4c1ce4369fc635ae56455963d3ac79b0c3d6319f
--- /dev/null
+++ b/tools/perf/page_sets/steady_state.py
@@ -0,0 +1,17 @@
+# Copyright 2016 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+from telemetry.page import page as page_module
+from telemetry import story
+
+
+class SteadyStateStorySet(story.StorySet):
nednguyen 2016/08/24 19:51:43 Why create new story set & benchmark instead of ad
erikchen 2016/08/24 22:13:31 Assuming this has low noise, I'm going to add anot
+ """Historically, Chrome has high steady-state CPU usage on these sites."""
+
+ def __init__(self):
+ super(SteadyStateStorySet, self).__init__(
+ archive_data_file='data/steady_state.json',
+ cloud_storage_bucket=story.PARTNER_BUCKET)
+ self.AddStory(page_module.Page(
+ 'http://www.labradortraininghq.com/labrador-training/how-to-crate-train'
+ '-a-puppy/#How_Long_DoesIt_Take_To_Crate_Train_A_Puppy', page_set=self))
« no previous file with comments | « tools/perf/page_sets/data/steady_state_000.wpr.sha1 ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698