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

Unified Diff: net/disk_cache/backend_unittest.cc

Issue 410843003: Disable all the tests that are flaking more than 5% on Windows builders. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 years, 5 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 | « mojo/system/simple_dispatcher_unittest.cc ('k') | ui/aura/window_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/disk_cache/backend_unittest.cc
diff --git a/net/disk_cache/backend_unittest.cc b/net/disk_cache/backend_unittest.cc
index f9df5bdd22efdff5ba9e5766f167c9d36f863125..1302e3b6a3b7d80e313e52a8def2ce320d618c8e 100644
--- a/net/disk_cache/backend_unittest.cc
+++ b/net/disk_cache/backend_unittest.cc
@@ -1783,11 +1783,23 @@ void DiskCacheBackendTest::BackendRecoverRemove() {
ASSERT_TRUE(success_) << "remove_head4";
}
-TEST_F(DiskCacheBackendTest, RecoverRemove) {
+#if defined(OS_WIN)
+// http://crbug.com/396392
+#define MAYBE_RecoverRemove DISABLED_RecoverRemove
+#else
+#define MAYBE_RecoverRemove RecoverRemove
+#endif
+TEST_F(DiskCacheBackendTest, MAYBE_RecoverRemove) {
BackendRecoverRemove();
}
-TEST_F(DiskCacheBackendTest, NewEvictionRecoverRemove) {
+#if defined(OS_WIN)
+// http://crbug.com/396392
+#define MAYBE_NewEvictionRecoverRemove DISABLED_NewEvictionRecoverRemove
+#else
+#define MAYBE_NewEvictionRecoverRemove NewEvictionRecoverRemove
+#endif
+TEST_F(DiskCacheBackendTest, MAYBE_NewEvictionRecoverRemove) {
SetNewEviction();
BackendRecoverRemove();
}
« no previous file with comments | « mojo/system/simple_dispatcher_unittest.cc ('k') | ui/aura/window_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698