Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4453)

Unified Diff: chrome/browser/extensions/web_view_browsertest.cc

Issue 12253030: Disable ShimSrcAttribute on linux (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/extensions/web_view_browsertest.cc
diff --git a/chrome/browser/extensions/web_view_browsertest.cc b/chrome/browser/extensions/web_view_browsertest.cc
index 3a13e2f45edbd6844da45ae07d076ddd4651df31..228258109e7ca29dd48ea01fe394fc264ecb8390 100644
--- a/chrome/browser/extensions/web_view_browsertest.cc
+++ b/chrome/browser/extensions/web_view_browsertest.cc
@@ -252,7 +252,13 @@ IN_PROC_BROWSER_TEST_F(WebViewTest, MAYBE_Shim) {
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"))
<< message_;
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698