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' |