OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 from telemetry import test | 4 from telemetry import test |
5 | 5 |
6 from benchmarks import silk_flags | 6 from benchmarks import silk_flags |
7 from measurements import thread_times | 7 from measurements import thread_times |
8 | 8 |
9 | 9 |
10 @test.Disabled('android') # crbug.com/355952 | |
11 class ThreadTimesKeySilkCases(test.Test): | 10 class ThreadTimesKeySilkCases(test.Test): |
12 """Measures timeline metrics while performing smoothness action on key silk | 11 """Measures timeline metrics while performing smoothness action on key silk |
13 cases.""" | 12 cases.""" |
14 test = thread_times.ThreadTimes | 13 test = thread_times.ThreadTimes |
15 page_set = 'page_sets/key_silk_cases.py' | 14 page_set = 'page_sets/key_silk_cases.py' |
16 options = {"report_silk_results": True} | 15 options = {"report_silk_results": True} |
17 | 16 |
18 | 17 |
19 @test.Disabled('android') # crbug.com/355952 | |
20 class ThreadTimesFastPathKeySilkCases(test.Test): | 18 class ThreadTimesFastPathKeySilkCases(test.Test): |
21 """Measures timeline metrics while performing smoothness action on key silk | 19 """Measures timeline metrics while performing smoothness action on key silk |
22 cases using bleeding edge rendering fast paths.""" | 20 cases using bleeding edge rendering fast paths.""" |
23 tag = 'fast_path' | 21 tag = 'fast_path' |
24 test = thread_times.ThreadTimes | 22 test = thread_times.ThreadTimes |
25 page_set = 'page_sets/key_silk_cases.py' | 23 page_set = 'page_sets/key_silk_cases.py' |
26 options = {"report_silk_results": True} | 24 options = {"report_silk_results": True} |
27 def CustomizeBrowserOptions(self, options): | 25 def CustomizeBrowserOptions(self, options): |
28 silk_flags.CustomizeBrowserOptionsForFastPath(options) | 26 silk_flags.CustomizeBrowserOptionsForFastPath(options) |
29 | 27 |
(...skipping 22 matching lines...) Expand all Loading... |
52 page_set = 'page_sets/tough_compositor_cases.py' | 50 page_set = 'page_sets/tough_compositor_cases.py' |
53 | 51 |
54 | 52 |
55 @test.Enabled('android') | 53 @test.Enabled('android') |
56 class ThreadTimesPolymer(test.Test): | 54 class ThreadTimesPolymer(test.Test): |
57 """Measures timeline metrics while performing smoothness action on | 55 """Measures timeline metrics while performing smoothness action on |
58 Polymer cases.""" | 56 Polymer cases.""" |
59 test = thread_times.ThreadTimes | 57 test = thread_times.ThreadTimes |
60 page_set = "page_sets/polymer.py" | 58 page_set = "page_sets/polymer.py" |
61 options = { 'report_silk_results': True } | 59 options = { 'report_silk_results': True } |
OLD | NEW |