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

Side by Side Diff: tools/perf/benchmarks/thread_times.py

Issue 302313002: Re-enable last remaining key_silk_cases tests on Android (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 6 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698