diff options
author | phajdan.jr@chromium.org <phajdan.jr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-12-12 12:00:40 +0000 |
---|---|---|
committer | phajdan.jr@chromium.org <phajdan.jr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-12-12 12:00:40 +0000 |
commit | d9eb3c45ead253d51ab8838055c5493ba0ac7951 (patch) | |
tree | beab9a67d8fbd22a85301f784b48b8b55757ed60 /chrome/test/perf/perftests.cc | |
parent | d4f06fa99aa8f04fedbb336fe4e115831b2bc6ca (diff) | |
download | chromium_src-d9eb3c45ead253d51ab8838055c5493ba0ac7951.zip chromium_src-d9eb3c45ead253d51ab8838055c5493ba0ac7951.tar.gz chromium_src-d9eb3c45ead253d51ab8838055c5493ba0ac7951.tar.bz2 |
Port flush_cache tool and perf_tests.
BUG=4160,4263
Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=6815
Review URL: http://codereview.chromium.org/9639
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@6886 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/test/perf/perftests.cc')
-rw-r--r-- | chrome/test/perf/perftests.cc | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/chrome/test/perf/perftests.cc b/chrome/test/perf/perftests.cc index 3e67a6b..18d92aa 100644 --- a/chrome/test/perf/perftests.cc +++ b/chrome/test/perf/perftests.cc @@ -2,6 +2,9 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. +#include "base/at_exit.h" +#include "base/command_line.h" +#include "base/debug_util.h" #include "base/message_loop.h" #include "base/perftimer.h" #include "base/process_util.h" @@ -11,7 +14,9 @@ // TODO(darin): share code with base/run_all_perftests.cc int main(int argc, char **argv) { + base::AtExitManager exit_manager; base::EnableTerminationOnHeapCorruption(); + CommandLine::SetArgcArgv(argc, argv); chrome::RegisterPathProvider(); MessageLoop main_message_loop; @@ -43,8 +48,8 @@ int main(int argc, char **argv) { // Raise to high priority to have more precise measurements. Since we don't // aim at 1% precision, it is not necessary to run at realtime level. - if (!IsDebuggerPresent()) { - SetPriorityClass(GetCurrentProcess(), HIGH_PRIORITY_CLASS); + if (!DebugUtil::BeingDebugged()) { + base::RaiseProcessToHighPriority(); } int result = RUN_ALL_TESTS(); |