Disable testTriggerBrowserActionWithPopup, testTriggerPageActionWithPopup on vista

Disabling 2 tests on pyauto chromium vista bot only.  They seem fine on other
bots / setups.

R=frankf@chromium.org
BUG=
TEST=

Review URL: http://codereview.chromium.org/8771058

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@113304 0039d316-1c4b-4281-b951-d872f2087c98
parent 99f07e02
......@@ -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'))
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment