Commit 6b9c3a99 authored by lazyboy@chromium.org's avatar lazyboy@chromium.org

Disable WebViewTest.ClearData on WinXP.

NOTRY=true
BUG=282674
Test=None

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

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@220692 0039d316-1c4b-4281-b951-d872f2087c98
parent 3a054147
......@@ -1543,6 +1543,12 @@ IN_PROC_BROWSER_TEST_F(WebViewTest, GeolocationRequestGone) {
}
IN_PROC_BROWSER_TEST_F(WebViewTest, ClearData) {
#if defined(OS_WIN)
// Flaky on XP bot http://crbug.com/282674
if (base::win::GetVersion() <= base::win::VERSION_XP)
return;
#endif
ASSERT_TRUE(StartEmbeddedTestServer()); // For serving guest pages.
ASSERT_TRUE(RunPlatformAppTestWithArg(
"platform_apps/web_view/common", "cleardata"))
......
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