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

Side by Side Diff: chrome/tools/perf/flush_cache/flush_cache.cc

Issue 9639: Port flush_cache tool. (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: '' Created 12 years 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/test/perf/perftests.scons ('k') | net/disk_cache/disk_cache_perftest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // This little program attempts to flush the disk cache for some files. 5 // This little program attempts to flush the system cache for some files.
6 // It's useful for testing Chrome with a cold database. 6 // It's useful for testing Chrome with a cold database.
7 7
8 #include "base/file_path.h"
8 #include "base/string_piece.h" 9 #include "base/string_piece.h"
9 #include "base/process_util.h" 10 #include "base/process_util.h"
10 #include "base/sys_string_conversions.h" 11 #include "base/sys_string_conversions.h"
11 #include "base/test_file_util.h" 12 #include "base/test_file_util.h"
12 13
13 int main(int argc, const char* argv[]) { 14 int main(int argc, const char* argv[]) {
14 base::EnableTerminationOnHeapCorruption(); 15 base::EnableTerminationOnHeapCorruption();
15 if (argc <= 1) { 16 if (argc <= 1) {
16 fprintf(stderr, "flushes disk cache for files\n"); 17 fprintf(stderr, "flushes disk cache for files\n");
17 fprintf(stderr, "usage: %s <filenames>\n", argv[0]); 18 fprintf(stderr, "usage: %s <filenames>\n", argv[0]);
18 return 1; 19 return 1;
19 } 20 }
20 21
21 for (int i = 1; i < argc; ++i) { 22 for (int i = 1; i < argc; ++i) {
22 std::wstring filename = base::SysNativeMBToWide(argv[i]); 23 std::wstring filename = base::SysNativeMBToWide(argv[i]);
23 if (!file_util::EvictFileFromSystemCache(filename.c_str())) { 24 FilePath path = FilePath::FromWStringHack(filename);
25 if (!file_util::EvictFileFromSystemCache(path)) {
24 fprintf(stderr, "Failed to evict %s from cache -- is it a directory?\n", 26 fprintf(stderr, "Failed to evict %s from cache -- is it a directory?\n",
25 argv[i]); 27 argv[i]);
26 } 28 }
27 } 29 }
28 30
29 return 0; 31 return 0;
30 } 32 }
31 33
OLDNEW
« no previous file with comments | « chrome/test/perf/perftests.scons ('k') | net/disk_cache/disk_cache_perftest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698