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

Unified Diff: tools/perf/benchmarks/page_cycler_v2.py

Issue 2030243003: Disable page_cycler_v2.typical_25 on Android One and Nexus 5X (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/perf/benchmarks/page_cycler_v2.py
diff --git a/tools/perf/benchmarks/page_cycler_v2.py b/tools/perf/benchmarks/page_cycler_v2.py
index 3fd81079ed452bb171d3266f256abe908ef47923..04cf74b7d36ce70e328323384232ba44517fea5a 100644
--- a/tools/perf/benchmarks/page_cycler_v2.py
+++ b/tools/perf/benchmarks/page_cycler_v2.py
@@ -43,8 +43,10 @@ class PageCyclerV2Typical25(_PageCyclerV2):
@classmethod
def ShouldDisable(cls, possible_browser): # crbug.com/615178
- return (possible_browser.browser_type == 'reference' and
- possible_browser.platform.GetOSName() == 'android')
+ return ((possible_browser.browser_type == 'reference' and
+ possible_browser.platform.GetOSName() == 'android') or
+ cls.IsSvelte(possible_browser) or # crbug.com/616781
+ possible_browser.platform.GetDeviceTypeName() == 'Nexus 5X')
def CreateStorySet(self, options):
return page_sets.Typical25PageSet(run_no_page_interactions=True,
« 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