Commit 13ed4154 authored by rdsmith@chromium.org's avatar rdsmith@chromium.org

Disabled FileBrowserResourceThrottleExtensionApiTest.Basic on ChromeOS--

it's failing flakily on the Chrome OS ASAN bots.

BUG=176082
TBR=satorux@chromium.org

Review URL: https://codereview.chromium.org/12257015

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@182311 0039d316-1c4b-4281-b951-d872f2087c98
parent fb66cafb
......@@ -244,9 +244,16 @@ class FileBrowserResourceThrottleExtensionApiTest : public ExtensionApiTest {
base::ScopedTempDir downloads_dir_;
};
// http://crbug.com/176082: This test flaky on Chrome OS ASAN bots.
#if defined(OS_CHROMEOS)
#define MAYBE_Basic DISABLED_Basic
#else
#define MAYBE_Basic Basic
#endif
// Tests that invoking FileBrowserResourceThrottle with handleable MIME type
// actually invokes the fileBrowserHandler.onExecuteContnentHandler event.
IN_PROC_BROWSER_TEST_F(FileBrowserResourceThrottleExtensionApiTest, Basic) {
IN_PROC_BROWSER_TEST_F(FileBrowserResourceThrottleExtensionApiTest,
MAYBE_Basic) {
ASSERT_TRUE(LoadTestExtension()) << message_;
ResultCatcher catcher;
......
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