summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorcraigdh@chromium.org <craigdh@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-08-16 20:12:06 +0000
committercraigdh@chromium.org <craigdh@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-08-16 20:12:06 +0000
commit4e9497fac87f9827a1a8981354ae0e3f0180f1e6 (patch)
treed5a99f58dcc45013686c8457a20c60d9d976fe34
parentb850b3aa170997c7e9c4e66a189a3608c8bc46e9 (diff)
downloadchromium_src-4e9497fac87f9827a1a8981354ae0e3f0180f1e6.zip
chromium_src-4e9497fac87f9827a1a8981354ae0e3f0180f1e6.tar.gz
chromium_src-4e9497fac87f9827a1a8981354ae0e3f0180f1e6.tar.bz2
[chromedriver] Disable testCloseWindow python test on Chrome on Android.
BUG=274650 TEST=None NOTRY=True Review URL: https://chromiumcodereview.appspot.com/23172005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@218075 0039d316-1c4b-4281-b951-d872f2087c98
-rwxr-xr-xchrome/test/chromedriver/test/run_py_tests.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/chrome/test/chromedriver/test/run_py_tests.py b/chrome/test/chromedriver/test/run_py_tests.py
index 34d28e3..91f06f8 100755
--- a/chrome/test/chromedriver/test/run_py_tests.py
+++ b/chrome/test/chromedriver/test/run_py_tests.py
@@ -93,6 +93,8 @@ _ANDROID_NEGATIVE_FILTER['com.google.android.apps.chrome'] = (
'ChromeExtensionsCapabilityTest.*',
# https://code.google.com/p/chromedriver/issues/detail?id=459
'ChromeDriverTest.testShouldHandleNewWindowLoadingProperly',
+ # https://crbug.com/274650
+ 'ChromeDriverTest.testCloseWindow',
# https://code.google.com/p/chromedriver/issues/detail?id=259
'ChromeDriverTest.testSendKeysToElement',
# https://code.google.com/p/chromedriver/issues/detail?id=270
@@ -111,7 +113,6 @@ _ANDROID_NEGATIVE_FILTER['com.google.android.apps.chrome'] = (
_ANDROID_NEGATIVE_FILTER['org.chromium.chrome.testshell'] = (
_ANDROID_NEGATIVE_FILTER['com.google.android.apps.chrome'] + [
# ChromiumTestShell doesn't support multiple tabs.
- 'ChromeDriverTest.testCloseWindow',
'ChromeDriverTest.testGetWindowHandles',
'ChromeDriverTest.testSwitchToWindow',
]