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

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

Issue 596783005: [Telemetry] Do not run session_restore benchmarks on reference builds. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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 | tools/telemetry/telemetry/test_runner.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/perf/benchmarks/session_restore.py
diff --git a/tools/perf/benchmarks/session_restore.py b/tools/perf/benchmarks/session_restore.py
index 989b710f1d0bc4c6074d3c6747e63bf1e219d4ef..dc0e973da6bdece56901518660e8ac39b3839419 100644
--- a/tools/perf/benchmarks/session_restore.py
+++ b/tools/perf/benchmarks/session_restore.py
@@ -30,7 +30,8 @@ class _SessionRestoreTest(benchmark.Benchmark):
args.browser_options.profile_dir = os.path.join(profile_dir, profile_type)
-@benchmark.Disabled('android', 'linux') # crbug.com/325479, crbug.com/381990
+# crbug.com/325479, crbug.com/381990
+@benchmark.Disabled('android', 'linux', 'reference')
class SessionRestoreColdTypical25(_SessionRestoreTest):
tag = 'cold'
test = session_restore.SessionRestore
@@ -39,7 +40,8 @@ class SessionRestoreColdTypical25(_SessionRestoreTest):
'pageset_repeat': 5}
-@benchmark.Disabled('android', 'linux') # crbug.com/325479, crbug.com/381990
+# crbug.com/325479, crbug.com/381990
+@benchmark.Disabled('android', 'linux', 'reference')
class SessionRestoreWarmTypical25(_SessionRestoreTest):
tag = 'warm'
test = session_restore.SessionRestore
@@ -49,7 +51,7 @@ class SessionRestoreWarmTypical25(_SessionRestoreTest):
# crbug.com/325479, crbug.com/381990, crbug.com/405386
-@benchmark.Disabled('android', 'linux', 'snowleopard')
+@benchmark.Disabled('android', 'linux', 'reference', 'snowleopard')
dtu 2014/09/24 03:04:35 Got a bug number? These bugs no longer match these
class SessionRestoreWithUrlCold(_SessionRestoreTest):
"""Measure Chrome cold session restore with startup URLs."""
tag = 'cold'
@@ -60,7 +62,7 @@ class SessionRestoreWithUrlCold(_SessionRestoreTest):
# crbug.com/325479, crbug.com/381990, crbug.com/405386
-@benchmark.Disabled('android', 'linux', 'snowleopard')
+@benchmark.Disabled('android', 'linux', 'reference', 'snowleopard')
class SessionRestoreWithUrlWarm(_SessionRestoreTest):
"""Measure Chrome warm session restore with startup URLs."""
tag = 'warm'
« no previous file with comments | « no previous file | tools/telemetry/telemetry/test_runner.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698