| Index: tools/perf/benchmarks/system_health.py
|
| diff --git a/tools/perf/benchmarks/system_health.py b/tools/perf/benchmarks/system_health.py
|
| index 687a86729200c991b84dabaa2c14f827c194f8b0..e1ad5dcf873c4eb7ef26d8a82dc945d6f2c5e2c7 100644
|
| --- a/tools/perf/benchmarks/system_health.py
|
| +++ b/tools/perf/benchmarks/system_health.py
|
| @@ -30,6 +30,7 @@ class _SystemHealthBenchmark(perf_benchmark.PerfBenchmark):
|
| return browser.platform.GetDeviceTypeName() == galaxy_s5_type_name
|
|
|
|
|
| +@benchmark.Disabled('all') # crbug.com/613050
|
| class SystemHealthTop25(_SystemHealthBenchmark):
|
| page_set = page_sets.Top25PageSet
|
|
|
| @@ -37,8 +38,8 @@ class SystemHealthTop25(_SystemHealthBenchmark):
|
| def Name(cls):
|
| return 'system_health.top25'
|
|
|
| -# crbug.com/601953
|
| -@benchmark.Disabled('android')
|
| +@benchmark.Disabled('android') # crbug.com/601953
|
| +@benchmark.Disabled('all') # crbug.com/613050
|
| class SystemHealthKeyMobileSites(_SystemHealthBenchmark):
|
| page_set = page_sets.KeyMobileSitesPageSet
|
|
|
|
|