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

Unified Diff: net/disk_cache/backend_unittest.cc

Issue 1792011: Disk cache: fix a unit test for Linux.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 10 years, 8 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: net/disk_cache/backend_unittest.cc
===================================================================
--- net/disk_cache/backend_unittest.cc (revision 45878)
+++ net/disk_cache/backend_unittest.cc (working copy)
@@ -241,12 +241,10 @@
MessageLoop::current()->RunAllPending();
}
-#if defined(OS_WIN) || defined(OS_MACOSX)
-// This test fails on linux. TODO(rvargas): Find out why (bug 41563).
TEST_F(DiskCacheTest, TruncatedIndex) {
FilePath path = GetCacheFilePath();
ASSERT_TRUE(DeleteCache(path));
- FilePath index = path.AppendASCII("Index");
+ FilePath index = path.AppendASCII("index");
ASSERT_EQ(5, file_util::WriteFile(index, "hello", 5));
scoped_ptr<disk_cache::Backend> backend;
backend.reset(disk_cache::BackendImpl::CreateBackend(path, false, 0,
@@ -254,7 +252,6 @@
disk_cache::kNone));
ASSERT_TRUE(backend.get() == NULL);
}
-#endif
void DiskCacheBackendTest::BackendSetSize() {
SetDirectMode();
« 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