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

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

Issue 2781713005: [Android][Telemetry] Disable failing key_mobile_sites benchmarks. (Closed)
Patch Set: Created 3 years, 8 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
« no previous file with comments | « tools/perf/benchmarks/blink_style.py ('k') | tools/perf/benchmarks/smoothness.py » ('j') | 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 4
5 import os 5 import os
6 6
7 from core import perf_benchmark 7 from core import perf_benchmark
8 8
9 from benchmarks import blink_perf 9 from benchmarks import blink_perf
10 from benchmarks import silk_flags 10 from benchmarks import silk_flags
(...skipping 30 matching lines...) Expand all
41 @benchmark.Enabled('android') 41 @benchmark.Enabled('android')
42 class OilpanGCTimesKeySilkCases(perf_benchmark.PerfBenchmark): 42 class OilpanGCTimesKeySilkCases(perf_benchmark.PerfBenchmark):
43 test = oilpan_gc_times.OilpanGCTimesForSmoothness 43 test = oilpan_gc_times.OilpanGCTimesForSmoothness
44 page_set = page_sets.KeySilkCasesPageSet 44 page_set = page_sets.KeySilkCasesPageSet
45 45
46 @classmethod 46 @classmethod
47 def Name(cls): 47 def Name(cls):
48 return 'oilpan_gc_times.key_silk_cases' 48 return 'oilpan_gc_times.key_silk_cases'
49 49
50 50
51 @benchmark.Enabled('android') 51 @benchmark.Disabled('all') # crbug.com/702194
52 #@benchmark.Enabled('android')
52 class OilpanGCTimesSyncScrollKeyMobileSites(perf_benchmark.PerfBenchmark): 53 class OilpanGCTimesSyncScrollKeyMobileSites(perf_benchmark.PerfBenchmark):
53 tag = 'sync_scroll' 54 tag = 'sync_scroll'
54 test = oilpan_gc_times.OilpanGCTimesForSmoothness 55 test = oilpan_gc_times.OilpanGCTimesForSmoothness
55 page_set = page_sets.KeyMobileSitesSmoothPageSet 56 page_set = page_sets.KeyMobileSitesSmoothPageSet
56 57
57 def SetExtraBrowserOptions(self, options): 58 def SetExtraBrowserOptions(self, options):
58 silk_flags.CustomizeBrowserOptionsForSyncScrolling(options) 59 silk_flags.CustomizeBrowserOptionsForSyncScrolling(options)
59 60
60 @classmethod 61 @classmethod
61 def Name(cls): 62 def Name(cls):
62 return 'oilpan_gc_times.sync_scroll.key_mobile_sites_smooth' 63 return 'oilpan_gc_times.sync_scroll.key_mobile_sites_smooth'
63 64
64 @classmethod 65 @classmethod
65 def ShouldDisable(cls, possible_browser): # http://crbug.com/597656 66 def ShouldDisable(cls, possible_browser): # http://crbug.com/597656
66 return (possible_browser.browser_type == 'reference' and 67 return (possible_browser.browser_type == 'reference' and
67 possible_browser.platform.GetDeviceTypeName() == 'Nexus 5X') 68 possible_browser.platform.GetDeviceTypeName() == 'Nexus 5X')
OLDNEW
« no previous file with comments | « tools/perf/benchmarks/blink_style.py ('k') | tools/perf/benchmarks/smoothness.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698