summaryrefslogtreecommitdiffstats
path: root/chrome/browser
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser')
-rw-r--r--chrome/browser/extensions/api/downloads/downloads_api_unittest.cc11
1 files changed, 10 insertions, 1 deletions
diff --git a/chrome/browser/extensions/api/downloads/downloads_api_unittest.cc b/chrome/browser/extensions/api/downloads/downloads_api_unittest.cc
index 4ce1dfb..b361724 100644
--- a/chrome/browser/extensions/api/downloads/downloads_api_unittest.cc
+++ b/chrome/browser/extensions/api/downloads/downloads_api_unittest.cc
@@ -3347,11 +3347,20 @@ IN_PROC_BROWSER_TEST_F(
result_id)));
}
+#if defined(OS_WIN)
+// This test is very flaky on Win XP and Aura. http://crbug.com/248438
+#define MAYBE_DownloadExtensionTest_OnDeterminingFilename_InterruptedResume \
+ DISABLED_DownloadExtensionTest_OnDeterminingFilename_InterruptedResume
+#else
+#define MAYBE_DownloadExtensionTest_OnDeterminingFilename_InterruptedResume \
+ DownloadExtensionTest_OnDeterminingFilename_InterruptedResume
+#endif
+
// Test download interruption while extensions determining filename. Should not
// re-dispatch onDeterminingFilename.
IN_PROC_BROWSER_TEST_F(
DownloadExtensionTest,
- DownloadExtensionTest_OnDeterminingFilename_InterruptedResume) {
+ MAYBE_DownloadExtensionTest_OnDeterminingFilename_InterruptedResume) {
CommandLine::ForCurrentProcess()->AppendSwitch(
switches::kEnableDownloadResumption);
LoadExtension("downloads_split");