Commit 2430e24b authored by raymes@chromium.org's avatar raymes@chromium.org

Disable flaky WebViewTest.Shim on Windows.

BUG=176122
TBR=kalman@chromium.org
NOTRY=true

Review URL: https://codereview.chromium.org/12256025

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@182328 0039d316-1c4b-4281-b951-d872f2087c98
parent d4db2c86
......@@ -242,7 +242,13 @@ class WebViewTest : public extensions::PlatformAppBrowserTest {
fake_speech_recognition_manager_;
};
IN_PROC_BROWSER_TEST_F(WebViewTest, Shim) {
// http://crbug.com/176122: This test is flaky on Windows.
#if defined(OS_WIN)
#define MAYBE_Shim DISABLED_Shim
#else
#define MAYBE_Shim Shim
#endif
IN_PROC_BROWSER_TEST_F(WebViewTest, MAYBE_Shim) {
ASSERT_TRUE(RunPlatformAppTest("platform_apps/web_view/shim")) << message_;
}
......
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