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

Unified Diff: chrome/test/functional/extensions.py

Issue 8771058: Disable testTriggerBrowserActionWithPopup, testTriggerPageActionWithPopup on vista (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years 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: chrome/test/functional/extensions.py
diff --git a/chrome/test/functional/extensions.py b/chrome/test/functional/extensions.py
index f158efd2432473b63699ab908e8c2260c0d59a76..040ceca2f25bd463c90e477aa1985b74b675f0a7 100755
--- a/chrome/test/functional/extensions.py
+++ b/chrome/test/functional/extensions.py
@@ -200,6 +200,10 @@ class ExtensionsTest(pyauto.PyUITest):
def testTriggerBrowserActionWithPopup(self):
"""Test triggering browser action that shows a popup."""
+ # Fails on Vista Chromium bot only. crbug.com/106620
+ if (self.IsWinVista() and
+ self.GetBrowserInfo()['properties']['branding'] == 'Chromium'):
+ return
dir_path = os.path.abspath(
os.path.join(self.DataDir(), 'extensions', 'trigger_actions',
'browser_action_popup'))
@@ -240,6 +244,10 @@ class ExtensionsTest(pyauto.PyUITest):
def testTriggerPageActionWithPopup(self):
"""Test triggering page action that shows a popup."""
+ # Fails on Vista Chromium bot only. crbug.com/106620
+ if (self.IsWinVista() and
+ self.GetBrowserInfo()['properties']['branding'] == 'Chromium'):
+ return
dir_path = os.path.abspath(
os.path.join(self.DataDir(), 'extensions', 'trigger_actions',
'page_action_popup'))
« 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