Commit d0aa1ff2 authored by dewittj's avatar dewittj Committed by Commit bot

Disable DownloadExtensionTest.DownloadExtensionTest_FileIcon_Active on Windows.

"DownloadExtensionTest.DownloadExtensionTest_FileIcon_Active" is flaky.

BUG=678967
TBR=benjhayden@chromium.org

Review-Url: https://codereview.chromium.org/2616133002
Cr-Commit-Position: refs/heads/master@{#442027}
parent 233457d0
...@@ -948,10 +948,16 @@ scoped_refptr<UIThreadExtensionFunction> MockedGetFileIconFunction( ...@@ -948,10 +948,16 @@ scoped_refptr<UIThreadExtensionFunction> MockedGetFileIconFunction(
return function; return function;
} }
// https://crbug.com/678967
#if defined(OS_WIN)
#define MAYBE_DownloadExtensionTest_FileIcon_Active DISABLED_DownloadExtensionTest_FileIcon_Active
#else
#define MAYBE_DownloadExtensionTest_FileIcon_Active DownloadExtensionTest_FileIcon_Active
#endif
// Test downloads.getFileIcon() on in-progress, finished, cancelled and deleted // Test downloads.getFileIcon() on in-progress, finished, cancelled and deleted
// download items. // download items.
IN_PROC_BROWSER_TEST_F(DownloadExtensionTest, IN_PROC_BROWSER_TEST_F(DownloadExtensionTest,
DownloadExtensionTest_FileIcon_Active) { MAYBE_DownloadExtensionTest_FileIcon_Active) {
DownloadItem* download_item = CreateSlowTestDownload(); DownloadItem* download_item = CreateSlowTestDownload();
ASSERT_TRUE(download_item); ASSERT_TRUE(download_item);
ASSERT_FALSE(download_item->GetTargetFilePath().empty()); ASSERT_FALSE(download_item->GetTargetFilePath().empty());
......
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