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

Unified Diff: chrome/browser/media_galleries/fileapi/media_file_validator_browsertest.cc

Issue 2774653004: Disable MediaFileValidatorTest.UnsupportedExtension (Closed)
Patch Set: Created 3 years, 9 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/media_galleries/fileapi/media_file_validator_browsertest.cc
diff --git a/chrome/browser/media_galleries/fileapi/media_file_validator_browsertest.cc b/chrome/browser/media_galleries/fileapi/media_file_validator_browsertest.cc
index 48e2740af25b651b4f9125cb6f55c371189d35d9..21031470b8d243b5f8236aef1338fe47600cf694 100644
--- a/chrome/browser/media_galleries/fileapi/media_file_validator_browsertest.cc
+++ b/chrome/browser/media_galleries/fileapi/media_file_validator_browsertest.cc
@@ -253,7 +253,13 @@ class MediaFileValidatorTest : public InProcessBrowserTest {
DISALLOW_COPY_AND_ASSIGN(MediaFileValidatorTest);
};
-IN_PROC_BROWSER_TEST_F(MediaFileValidatorTest, UnsupportedExtension) {
+// Flaky on linux_chromium_rel_ng. https://crbug.com/704614.
+#if defined(OS_LINUX)
+#define MAYBE_UnsupportedExtension DISABLED_UnsupportedExtension
+#else
+#define MAYBE_UnsupportedExtension UnsupportedExtension
+#endif
+IN_PROC_BROWSER_TEST_F(MediaFileValidatorTest, MAYBE_UnsupportedExtension) {
MoveTest("a.txt", std::string(kValidImage, arraysize(kValidImage)), false);
}
« 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