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

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

Issue 2102433004: Revert of Disabled v8.top_25_smooth/smoothness.top_25_smooth on mac. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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 | « no previous file | tools/perf/benchmarks/v8.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 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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 import multiprocessing 4 import multiprocessing
5 5
6 from core import perf_benchmark 6 from core import perf_benchmark
7 7
8 from benchmarks import silk_flags 8 from benchmarks import silk_flags
9 from measurements import smoothness 9 from measurements import smoothness
10 import page_sets 10 import page_sets
(...skipping 19 matching lines...) Expand all
30 @classmethod 30 @classmethod
31 def ValueCanBeAddedPredicate(cls, value, is_first_result): 31 def ValueCanBeAddedPredicate(cls, value, is_first_result):
32 del is_first_result # unused 32 del is_first_result # unused
33 if (value.name == 'first_gesture_scroll_update_latency' and 33 if (value.name == 'first_gesture_scroll_update_latency' and
34 value.page.url in cls._PAGES_WITHOUT_SCROLL_GESTURE_BLACKLIST and 34 value.page.url in cls._PAGES_WITHOUT_SCROLL_GESTURE_BLACKLIST and
35 value.values is None): 35 value.values is None):
36 return False 36 return False
37 return True 37 return True
38 38
39 39
40 @benchmark.Disabled('mac') # crbug.com/623570
41 class SmoothnessTop25(_Smoothness): 40 class SmoothnessTop25(_Smoothness):
42 """Measures rendering statistics while scrolling down the top 25 web pages. 41 """Measures rendering statistics while scrolling down the top 25 web pages.
43 42
44 http://www.chromium.org/developers/design-documents/rendering-benchmarks 43 http://www.chromium.org/developers/design-documents/rendering-benchmarks
45 """ 44 """
46 page_set = page_sets.Top25SmoothPageSet 45 page_set = page_sets.Top25SmoothPageSet
47 46
48 @classmethod 47 @classmethod
49 def Name(cls): 48 def Name(cls):
50 return 'smoothness.top_25_smooth' 49 return 'smoothness.top_25_smooth'
(...skipping 421 matching lines...) Expand 10 before | Expand all | Expand 10 after
472 """Measures rendering statistics while scrolling advertisements.""" 471 """Measures rendering statistics while scrolling advertisements."""
473 page_set = page_sets.SyntheticToughWebglAdCasesPageSet 472 page_set = page_sets.SyntheticToughWebglAdCasesPageSet
474 473
475 @classmethod 474 @classmethod
476 def Name(cls): 475 def Name(cls):
477 return 'smoothness.tough_webgl_ad_cases' 476 return 'smoothness.tough_webgl_ad_cases'
478 477
479 @classmethod 478 @classmethod
480 def ShouldDisable(cls, possible_browser): 479 def ShouldDisable(cls, possible_browser):
481 return cls.IsSvelte(possible_browser) # http://crbug.com/574485 480 return cls.IsSvelte(possible_browser) # http://crbug.com/574485
OLDNEW
« no previous file with comments | « no previous file | tools/perf/benchmarks/v8.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698