Commit 5af9a9c9 authored by Elliot Glaysher's avatar Elliot Glaysher

Disable ECKEncryptedMediaTest.FileIOTest

BUG=415742
TBR=danbeam@chromium.org

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

Cr-Commit-Position: refs/heads/master@{#295577}
parent 5a695b36
...@@ -637,7 +637,14 @@ IN_PROC_BROWSER_TEST_F(ECKEncryptedMediaTest, DISABLED_CDMExpectedCrash) { ...@@ -637,7 +637,14 @@ IN_PROC_BROWSER_TEST_F(ECKEncryptedMediaTest, DISABLED_CDMExpectedCrash) {
"plugin crash"); "plugin crash");
} }
IN_PROC_BROWSER_TEST_F(ECKEncryptedMediaTest, FileIOTest) { // Disabled on Windows because this flakily causes failures in ~File, which
// causes base::ThreadRestrictions::AssertIOAllowed problems. crbug.com/415742
#if defined(OS_WIN)
#define MAYBE_FileIOTest DISABLED_FileIOTest
#else
#define MAYBE_FileIOTest FileIOTest
#endif
IN_PROC_BROWSER_TEST_F(ECKEncryptedMediaTest, MAYBE_FileIOTest) {
TestNonPlaybackCases(kExternalClearKeyFileIOTestKeySystem, TestNonPlaybackCases(kExternalClearKeyFileIOTestKeySystem,
kFileIOTestSuccess); kFileIOTestSuccess);
} }
......
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