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

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

Issue 12256025: Disable flaky WebViewTest.Shim on Windows. (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 b3480af87a9f005b53800d5744ac56fbbff5fe26..3a13e2f45edbd6844da45ae07d076ddd4651df31 100644
--- a/chrome/browser/extensions/web_view_browsertest.cc
+++ b/chrome/browser/extensions/web_view_browsertest.cc
@@ -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_;
}
« 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