Commit 9f1ac723 authored by atwilson@chromium.org's avatar atwilson@chromium.org

Disable ShimSrcAttribute on linux

TBR=fsamuel
BUG=176122

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

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@182450 0039d316-1c4b-4281-b951-d872f2087c98
parent e0288bd7
...@@ -252,7 +252,13 @@ IN_PROC_BROWSER_TEST_F(WebViewTest, MAYBE_Shim) { ...@@ -252,7 +252,13 @@ IN_PROC_BROWSER_TEST_F(WebViewTest, MAYBE_Shim) {
ASSERT_TRUE(RunPlatformAppTest("platform_apps/web_view/shim")) << message_; ASSERT_TRUE(RunPlatformAppTest("platform_apps/web_view/shim")) << message_;
} }
IN_PROC_BROWSER_TEST_F(WebViewTest, ShimSrcAttribute) { // http://crbug.com/176122: This test is flaky on Linux.
#if defined(OS_LINUX)
#define MAYBE_ShimSrcAttribute DISABLED_ShimSrcAttribute
#else
#define MAYBE_ShimSrcAttribute ShimSrcAttribute
#endif
IN_PROC_BROWSER_TEST_F(WebViewTest, MAYBE_ShimSrcAttribute) {
ASSERT_TRUE(RunPlatformAppTest("platform_apps/web_view/src_attribute")) ASSERT_TRUE(RunPlatformAppTest("platform_apps/web_view/src_attribute"))
<< message_; << 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