diff options
author | phajdan.jr@chromium.org <phajdan.jr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-09-22 11:47:29 +0000 |
---|---|---|
committer | phajdan.jr@chromium.org <phajdan.jr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-09-22 11:47:29 +0000 |
commit | 3cc5922dbc5f1668bc1cd4f691286c5a7218c167 (patch) | |
tree | 4acd9b73dc5f6ab0c0a6aa2da482d2fd6948816f /net/disk_cache/stress_cache.cc | |
parent | c86d350e584b00bd5df71e82b5774ef245a14bef (diff) | |
download | chromium_src-3cc5922dbc5f1668bc1cd4f691286c5a7218c167.zip chromium_src-3cc5922dbc5f1668bc1cd4f691286c5a7218c167.tar.gz chromium_src-3cc5922dbc5f1668bc1cd4f691286c5a7218c167.tar.bz2 |
Revert 60165 - GTTF: Make net_unittests run successfully with parallel test launcher
by using a unique directory for disk cache tests.
BUG=54098
TEST=run net_unittests using tools/parallel_launcher/parallel_launcher.py
Review URL: http://codereview.chromium.org/3410008
TBR=phajdan.jr@chromium.org
Review URL: http://codereview.chromium.org/3387012
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@60166 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/disk_cache/stress_cache.cc')
-rw-r--r-- | net/disk_cache/stress_cache.cc | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/net/disk_cache/stress_cache.cc b/net/disk_cache/stress_cache.cc index 51fda4c..98dcbe1 100644 --- a/net/disk_cache/stress_cache.cc +++ b/net/disk_cache/stress_cache.cc @@ -29,7 +29,6 @@ #include "base/command_line.h" #include "base/debug_util.h" #include "base/file_path.h" -#include "base/file_util.h" #include "base/logging.h" #include "base/message_loop.h" #include "base/path_service.h" @@ -51,16 +50,6 @@ using base::Time; const int kError = -1; const int kExpectedCrash = 100; -FilePath GetStressCacheFilePath() { - FilePath path; - PathService::Get(base::DIR_TEMP, &path); // Ignore return value; - path = path.AppendASCII("cache_test_stress"); - if (!file_util::PathExists(path)) - file_util::CreateDirectory(path); - - return path; -} - // Starts a new process. int RunSlave(int iteration) { FilePath exe; @@ -103,7 +92,7 @@ int MasterCode() { // to know which instance of the application wrote them. void StressTheCache(int iteration) { int cache_size = 0x800000; // 8MB - FilePath path = GetStressCacheFilePath(); + FilePath path = GetCacheFilePath().InsertBeforeExtensionASCII("_stress"); base::Thread cache_thread("CacheThread"); if (!cache_thread.StartWithOptions( |