summaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorlpromero <lpromero@chromium.org>2015-06-17 13:15:16 -0700
committerCommit bot <commit-bot@chromium.org>2015-06-17 20:15:51 +0000
commit7082fa98284787df53a7cfc43597de7e6f7a1ec4 (patch)
tree138c0d13ec45915d58c98bfb33393f1ffc0a68f0 /net
parentcb414491d46a827936919f54155cf6eb4621f258 (diff)
downloadchromium_src-7082fa98284787df53a7cfc43597de7e6f7a1ec4.zip
chromium_src-7082fa98284787df53a7cfc43597de7e6f7a1ec4.tar.gz
chromium_src-7082fa98284787df53a7cfc43597de7e6f7a1ec4.tar.bz2
Mark DiskCacheEntryTest.ExternalAsyncIONoBuffer as flaky on iOS.
BUG=497101 R=droger,rvargas@chromium.org Review URL: https://codereview.chromium.org/1160013006 Cr-Commit-Position: refs/heads/master@{#334900}
Diffstat (limited to 'net')
-rw-r--r--net/disk_cache/entry_unittest.cc8
1 files changed, 7 insertions, 1 deletions
diff --git a/net/disk_cache/entry_unittest.cc b/net/disk_cache/entry_unittest.cc
index 64e79e5..f16cbda 100644
--- a/net/disk_cache/entry_unittest.cc
+++ b/net/disk_cache/entry_unittest.cc
@@ -598,7 +598,13 @@ TEST_F(DiskCacheEntryTest, ExternalAsyncIO) {
ExternalAsyncIO();
}
-TEST_F(DiskCacheEntryTest, ExternalAsyncIONoBuffer) {
+// TODO(ios): This test is flaky. http://crbug.com/497101
+#if defined(OS_IOS)
+#define MAYBE_ExternalAsyncIONoBuffer DISABLED_ExternalAsyncIONoBuffer
+#else
+#define MAYBE_ExternalAsyncIONoBuffer ExternalAsyncIONoBuffer
+#endif
+TEST_F(DiskCacheEntryTest, MAYBE_ExternalAsyncIONoBuffer) {
InitCache();
cache_impl_->SetFlags(disk_cache::kNoBuffering);
ExternalAsyncIO();