Commit 72e2b121 authored by chrisgao@chromium.org's avatar chrisgao@chromium.org

[chromedriver] Disable failed tests on bots.

NOTRY=true

Review URL: https://chromiumcodereview.appspot.com/13493014

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@192851 0039d316-1c4b-4281-b951-d872f2087c98
parent f87d6e83
...@@ -46,6 +46,9 @@ elif util.IsLinux(): ...@@ -46,6 +46,9 @@ elif util.IsLinux():
_DESKTOP_OS_SPECIFIC_FILTER = [ _DESKTOP_OS_SPECIFIC_FILTER = [
# Xvfb doesn't support maximization. # Xvfb doesn't support maximization.
'ChromeDriverTest.testWindowMaximize', 'ChromeDriverTest.testWindowMaximize',
# https://code.google.com/p/chromedriver/issues/detail?id=302
'ChromeDriverTest.testWindowPosition',
'ChromeDriverTest.testWindowSize',
] ]
......
...@@ -10,6 +10,8 @@ It is evaluated through Python. ...@@ -10,6 +10,8 @@ It is evaluated through Python.
_REVISION_NEGATIVE_FILTER = {} _REVISION_NEGATIVE_FILTER = {}
_REVISION_NEGATIVE_FILTER['HEAD'] = [ _REVISION_NEGATIVE_FILTER['HEAD'] = [
'AlertsTest.*', 'AlertsTest.*',
'PerformanceLoggingTest.*',
'ChromeOptionsFunctionalTest.canStartChromeWithCustomOptions',
'AuthenticatedPageLoadingTest.*', 'AuthenticatedPageLoadingTest.*',
'AvailableLogsTest.browserLogShouldBeEnabledByDefault', 'AvailableLogsTest.browserLogShouldBeEnabledByDefault',
'AvailableLogsTest.clientLogShouldBeEnabledByDefault', 'AvailableLogsTest.clientLogShouldBeEnabledByDefault',
...@@ -95,6 +97,10 @@ _REVISION_NEGATIVE_FILTER['HEAD'] = [ ...@@ -95,6 +97,10 @@ _REVISION_NEGATIVE_FILTER['HEAD'] = [
] ]
_REVISION_NEGATIVE_FILTER['26'] = [ _REVISION_NEGATIVE_FILTER['26'] = [
'UploadTest.testFileUploading', 'UploadTest.testFileUploading',
'CorrectEventFiringTest.testUploadingFileShouldFireOnChangeEvent',
'FormHandlingTest.testShouldBeAbleToAlterTheContentsOfAFileUploadInputElement',
'FormHandlingTest.testShouldBeAbleToUploadTheSameFileTwice',
'FormHandlingTest.testShouldBeAbleToSendKeysToAFileUploadInputElementInAnXhtmlDocument',
] + _REVISION_NEGATIVE_FILTER['HEAD'] ] + _REVISION_NEGATIVE_FILTER['HEAD']
_OS_NEGATIVE_FILTER = {} _OS_NEGATIVE_FILTER = {}
......
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