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

Unified Diff: net/disk_cache/disk_cache_test_base.cc

Issue 3387012: Revert 60165 - GTTF: Make net_unittests run successfully with parallel test l... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 10 years, 3 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 | « net/disk_cache/disk_cache_test_base.h ('k') | net/disk_cache/disk_cache_test_util.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/disk_cache/disk_cache_test_base.cc
===================================================================
--- net/disk_cache/disk_cache_test_base.cc (revision 60165)
+++ net/disk_cache/disk_cache_test_base.cc (working copy)
@@ -55,8 +55,9 @@
}
void DiskCacheTestWithCache::InitDiskCache() {
+ FilePath path = GetCacheFilePath();
if (first_cleanup_)
- ASSERT_TRUE(DeleteCache(test_cache_.path()));
+ ASSERT_TRUE(DeleteCache(path));
if (!cache_thread_.IsRunning()) {
EXPECT_TRUE(cache_thread_.StartWithOptions(
@@ -65,7 +66,7 @@
ASSERT_TRUE(cache_thread_.message_loop() != NULL);
if (implementation_)
- return InitDiskCacheImpl(test_cache_.path());
+ return InitDiskCacheImpl(path);
scoped_refptr<base::MessageLoopProxy> thread =
use_current_thread_ ? base::MessageLoopProxy::CreateForCurrentThread() :
@@ -73,8 +74,8 @@
TestCompletionCallback cb;
int rv = disk_cache::BackendImpl::CreateBackend(
- test_cache_.path(), force_creation_, size_, type_,
- disk_cache::kNoRandom, thread, &cache_, &cb);
+ path, force_creation_, size_, type_,
+ disk_cache::kNoRandom, thread, &cache_, &cb);
ASSERT_EQ(net::OK, cb.GetResult(rv));
}
@@ -110,7 +111,8 @@
cache_thread_.Stop();
if (!memory_only_ && integrity_) {
- EXPECT_TRUE(CheckCacheIntegrity(path(), new_eviction_));
+ FilePath path = GetCacheFilePath();
+ EXPECT_TRUE(CheckCacheIntegrity(path, new_eviction_));
}
PlatformTest::TearDown();
@@ -125,9 +127,10 @@
cache_impl_->ClearRefCountForTest();
delete cache_impl_;
- EXPECT_TRUE(CheckCacheIntegrity(path(), new_eviction_));
+ FilePath path = GetCacheFilePath();
+ EXPECT_TRUE(CheckCacheIntegrity(path, new_eviction_));
- InitDiskCacheImpl(path());
+ InitDiskCacheImpl(path);
}
void DiskCacheTestWithCache::SetTestMode() {
« no previous file with comments | « net/disk_cache/disk_cache_test_base.h ('k') | net/disk_cache/disk_cache_test_util.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698