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

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

Issue 1815243002: Disable page_cycler.basic_oopif on zenbook bot (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address Petr's nits Created 4 years, 9 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.py
diff --git a/tools/perf/benchmarks/page_cycler.py b/tools/perf/benchmarks/page_cycler.py
index c6d3764bf0edfa5b90f39fdddb9f717064cbf430..6ec56f1d13daccbadeb0b1aa525570f80359acce 100644
--- a/tools/perf/benchmarks/page_cycler.py
+++ b/tools/perf/benchmarks/page_cycler.py
@@ -2,6 +2,8 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
+import os
+
from core import perf_benchmark
from measurements import page_cycler
@@ -250,6 +252,11 @@ class PageCyclerBasicOopifIsolated(_PageCycler):
def SetExtraBrowserOptions(self, options):
options.AppendExtraBrowserArgs(['--site-per-process'])
+ @classmethod
+ def ShouldDisable(cls, possible_browser): # http://crbug.com/596067
+ # This test is flaky on Zenbook laptops in the Chromium perf lab.
+ return 'Zenbook' in os.getenv('BUILDBOT_BUILDERNAME', '')
+
@benchmark.Disabled('reference') # crbug.com/523346
class PageCyclerBasicOopif(_PageCycler):
« 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