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

Side by Side Diff: tools/perf/page_sets/system_health/long_running_stories.py

Issue 2635983004: perf: Disable long_running:tools:gmail-foreground (Closed)
Patch Set: Created 3 years, 11 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 | 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 2016 The Chromium Authors. All rights reserved. 1 # Copyright 2016 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 from page_sets.login_helpers import google_login 5 from page_sets.login_helpers import google_login
6 from page_sets.system_health import platforms 6 from page_sets.system_health import platforms
7 from page_sets.system_health import system_health_story 7 from page_sets.system_health import system_health_story
8 8
9 from telemetry import decorators 9 from telemetry import decorators
10 10
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
81 # Wait until the UI loads. 81 # Wait until the UI loads.
82 action_runner.WaitForJavaScriptCondition( 82 action_runner.WaitForJavaScriptCondition(
83 'document.getElementById("loading").style.display === "none"') 83 'document.getElementById("loading").style.display === "none"')
84 84
85 85
86 @decorators.Disabled('android') # crbug.com/657433 86 @decorators.Disabled('android') # crbug.com/657433
87 class LongRunningGmailMobileForegroundStory(_LongRunningGmailMobileBase): 87 class LongRunningGmailMobileForegroundStory(_LongRunningGmailMobileBase):
88 NAME = 'long_running:tools:gmail-foreground' 88 NAME = 'long_running:tools:gmail-foreground'
89 89
90 90
91 @decorators.Disabled() # crbug.com/681839
perezju 2017/01/17 15:46:37 actually, I think this should be Disabled('all')
Sami 2017/01/17 15:48:17 Oops, thanks, fixed!
91 class LongRunningGmailDesktopForegroundStory(_LongRunningGmailDesktopBase): 92 class LongRunningGmailDesktopForegroundStory(_LongRunningGmailDesktopBase):
92 NAME = 'long_running:tools:gmail-foreground' 93 NAME = 'long_running:tools:gmail-foreground'
93 94
94 95
95 @decorators.Disabled('android-webview', # Weview does not have tabs. 96 @decorators.Disabled('android-webview', # Weview does not have tabs.
96 'android') # crbug.com/657433 97 'android') # crbug.com/657433
97 class LongRunningGmailMobileBackgroundStory(_LongRunningGmailMobileBase): 98 class LongRunningGmailMobileBackgroundStory(_LongRunningGmailMobileBase):
98 BACKGROUND = True 99 BACKGROUND = True
99 NAME = 'long_running:tools:gmail-background' 100 NAME = 'long_running:tools:gmail-background'
100 101
101 102
102 class LongRunningGmailDesktopBackgroundStory(_LongRunningGmailDesktopBase): 103 class LongRunningGmailDesktopBackgroundStory(_LongRunningGmailDesktopBase):
103 BACKGROUND = True 104 BACKGROUND = True
104 NAME = 'long_running:tools:gmail-background' 105 NAME = 'long_running:tools:gmail-background'
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