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

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

Issue 6382001: Mark TtsApiTest.Provide as flaky on Windows. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 11 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/extension_tts_apitest.cc
diff --git a/chrome/browser/extensions/extension_tts_apitest.cc b/chrome/browser/extensions/extension_tts_apitest.cc
index f7ed0d874abb548fa4716ddce25416f82785ce4e..560235df2b9172eccb26465f8dcfb19ef02c5436 100644
--- a/chrome/browser/extensions/extension_tts_apitest.cc
+++ b/chrome/browser/extensions/extension_tts_apitest.cc
@@ -180,7 +180,13 @@ IN_PROC_BROWSER_TEST_F(TtsApiTest, PlatformSpeakError) {
ASSERT_TRUE(RunExtensionTest("tts/speak_error")) << message_;
}
-IN_PROC_BROWSER_TEST_F(TtsApiTest, Provide) {
+#if defined(OS_WIN)
+// Flakily fails on Windows: http://crbug.com/70198
+#define MAYBE_Provide FLAKY_Provide
+#else
+#define MAYBE_Provide Provide
+#endif
+IN_PROC_BROWSER_TEST_F(TtsApiTest, MAYBE_Provide) {
EXPECT_CALL(mock_platform_impl_, StopSpeaking())
.WillRepeatedly(Return(true));
EXPECT_CALL(mock_platform_impl_, IsSpeaking())
« 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