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

Unified Diff: base/platform_file_unittest.cc

Issue 7205001: Mark TouchGetInfoPlatformFile as Flaky on Mac OS X. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: review fixes. Created 9 years, 6 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: base/platform_file_unittest.cc
diff --git a/base/platform_file_unittest.cc b/base/platform_file_unittest.cc
index 35afdf843afb5560e00969927f53d4f6d013edc9..0bd4fb327e20727612e7a05a6027af270aa9e0ab 100644
--- a/base/platform_file_unittest.cc
+++ b/base/platform_file_unittest.cc
@@ -249,7 +249,13 @@ TEST(PlatformFile, TruncatePlatformFile) {
base::ClosePlatformFile(file);
}
-TEST(PlatformFile, TouchGetInfoPlatformFile) {
+#if defined(OS_MACOSX)
+// Flakily fails: http://crbug.com/86494
+#define MAYBE_TouchGetInfoPlatformFile FLAKY_TouchGetInfoPlatformFile
+#else
+#define MAYBE_TouchGetInfoPlatformFile TouchGetInfoPlatformFile
+#endif
+TEST(PlatformFile, MAYBE_TouchGetInfoPlatformFile) {
ScopedTempDir temp_dir;
ASSERT_TRUE(temp_dir.CreateUniqueTempDir());
base::PlatformFile file = base::CreatePlatformFile(
« 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