| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 from core import perf_benchmark | 5 from core import perf_benchmark |
| 6 from telemetry.timeline import chrome_trace_category_filter | 6 from telemetry.timeline import chrome_trace_category_filter |
| 7 from telemetry.web_perf import timeline_based_measurement | 7 from telemetry.web_perf import timeline_based_measurement |
| 8 import page_sets | 8 import page_sets |
| 9 from telemetry import benchmark | 9 from telemetry import benchmark |
| 10 | 10 |
| 11 | 11 |
| 12 # TODO(rnephew): Remove BattOr naming from all benchmarks once the BattOr tests | 12 # TODO(rnephew): Remove BattOr naming from all benchmarks once the BattOr tests |
| 13 # are the primary means of benchmarking power. | 13 # are the primary means of benchmarking power. |
| 14 class _BattOrBenchmark(perf_benchmark.PerfBenchmark): | 14 class _BattOrBenchmark(perf_benchmark.PerfBenchmark): |
| 15 | 15 |
| 16 def CreateTimelineBasedMeasurementOptions(self): | 16 def CreateTimelineBasedMeasurementOptions(self): |
| 17 category_filter = chrome_trace_category_filter.ChromeTraceCategoryFilter( | 17 category_filter = chrome_trace_category_filter.ChromeTraceCategoryFilter( |
| 18 filter_string='toplevel') | 18 filter_string='toplevel') |
| 19 options = timeline_based_measurement.Options(category_filter) | 19 options = timeline_based_measurement.Options(category_filter) |
| 20 options.config.chrome_trace_config.category_filter.AddFilterString('rail') | 20 options.config.chrome_trace_config.category_filter.AddFilterString('rail') |
| 21 # TODO(charliea): Reenable the CPU tracing agent once it no longer causes | 21 options.config.enable_atrace_trace = True |
| 22 # indefinite hangs on Windows. | 22 options.config.atrace_config.categories = ['sched'] |
| 23 # https://crbug.com/647443 | |
| 24 options.config.enable_battor_trace = True | 23 options.config.enable_battor_trace = True |
| 25 options.config.enable_chrome_trace = True | 24 options.config.enable_chrome_trace = True |
| 26 options.config.enable_atrace_trace = True | 25 options.config.enable_cpu_trace = True |
| 27 options.config.atrace_config.categories = ['sched'] | |
| 28 options.SetTimelineBasedMetrics( | 26 options.SetTimelineBasedMetrics( |
| 29 ['powerMetric', 'clockSyncLatencyMetric', 'cpuTimeMetric']) | 27 ['powerMetric', 'clockSyncLatencyMetric', 'cpuTimeMetric']) |
| 30 return options | 28 return options |
| 31 | 29 |
| 32 @classmethod | 30 @classmethod |
| 33 def ShouldDisable(cls, possible_browser): | 31 def ShouldDisable(cls, possible_browser): |
| 34 # Only run if BattOr is detected. | 32 # Only run if BattOr is detected. |
| 35 if not possible_browser.platform.HasBattOrConnected(): | 33 if not possible_browser.platform.HasBattOrConnected(): |
| 36 return True | 34 return True |
| 37 | 35 |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 98 @benchmark.Enabled('mac') | 96 @benchmark.Enabled('mac') |
| 99 class BattOrSteadyStatePages(_BattOrBenchmark): | 97 class BattOrSteadyStatePages(_BattOrBenchmark): |
| 100 | 98 |
| 101 def CreateStorySet(self, options): | 99 def CreateStorySet(self, options): |
| 102 # We want it to wait for 30 seconds to be comparable to legacy power tests. | 100 # We want it to wait for 30 seconds to be comparable to legacy power tests. |
| 103 return page_sets.IdleAfterLoadingStories(wait_in_seconds=30) | 101 return page_sets.IdleAfterLoadingStories(wait_in_seconds=30) |
| 104 | 102 |
| 105 @classmethod | 103 @classmethod |
| 106 def Name(cls): | 104 def Name(cls): |
| 107 return 'battor.steady_state' | 105 return 'battor.steady_state' |
| OLD | NEW |