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

Unified Diff: tools/perf/benchmarks/page_cycler.py

Issue 23740005: [Telemetry] Change netsim page cycler from top_25 to top_10. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 3 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/benchmarks/page_cycler.py
diff --git a/tools/perf/benchmarks/page_cycler.py b/tools/perf/benchmarks/page_cycler.py
index bca43f787fdc2e2da5fb02b4182f3e0f76b9a305..1552bc8c4a5607e5c8395212839794a8ce2098f5 100644
--- a/tools/perf/benchmarks/page_cycler.py
+++ b/tools/perf/benchmarks/page_cycler.py
@@ -66,10 +66,10 @@ class PageCyclerMoz(test.Test):
options = {'pageset_repeat_iters': 10}
-class PageCyclerNetsimTop25(test.Test):
- """Measures load time of the top 25 sites under simulated cable network."""
+class PageCyclerNetsimTop10(test.Test):
+ """Measures load time of the top 10 sites under simulated cable network."""
test = page_cycler.PageCycler
- page_set = 'page_sets/top_25.json'
+ page_set = 'page_sets/top_10.json'
options = {
'extra_wpr_args': [
'--shaping_type=proxy',
@@ -79,7 +79,7 @@ class PageCyclerNetsimTop25(test.Test):
}
def __init__(self):
- super(PageCyclerNetsimTop25, self).__init__()
+ super(PageCyclerNetsimTop10, self).__init__()
# TODO: This isn't quite right.
# This option will still apply to page cyclers that run after this one.
self.test.clear_cache_before_each_run = True
« 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