Commit 39bf8dc9 authored by John Chen's avatar John Chen Committed by Commit Bot

[ChromeDriver] Disable a test causing flakiness on Mac

Disable test case ChromeDriverSiteIsolation.testCanClickOOPIF on Mac.
It appears to occasionally put the test HTTP server into a bad state,
causing large number of failures in subsequent test cases.

TBR=crouleau@chromium.org

Bug: 904061
Change-Id: I230b445dd701a1c894fb65a51a60933ab586bc23
Reviewed-on: https://chromium-review.googlesource.com/c/1335271Reviewed-by: default avatarJohn Chen <johnchen@chromium.org>
Commit-Queue: John Chen <johnchen@chromium.org>
Cr-Commit-Position: refs/heads/master@{#607905}
parent bfae09dc
...@@ -183,6 +183,12 @@ _INTEGRATION_NEGATIVE_FILTER = [ ...@@ -183,6 +183,12 @@ _INTEGRATION_NEGATIVE_FILTER = [
'SessionHandlingTest.testGetSessions', 'SessionHandlingTest.testGetSessions',
] ]
# https://crbug.com/904061
if util.GetPlatformName() == 'mac':
_INTEGRATION_NEGATIVE_FILTER += [
'ChromeDriverSiteIsolation.testCanClickOOPIF',
]
def _GetDesktopNegativeFilter(version_name): def _GetDesktopNegativeFilter(version_name):
filter = _NEGATIVE_FILTER + _DESKTOP_NEGATIVE_FILTER filter = _NEGATIVE_FILTER + _DESKTOP_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