diff options
author | darin@google.com <darin@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-08-26 06:18:05 +0000 |
---|---|---|
committer | darin@google.com <darin@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-08-26 06:18:05 +0000 |
commit | 692265957630abde6cd9244a3beef029452854a7 (patch) | |
tree | 835c9d9bae11d3876884dfe05bda4d3be18dc424 /chrome/test/reliability | |
parent | 65487266a6a2fbbebb0f64210367f5e27cf8ef9e (diff) | |
download | chromium_src-692265957630abde6cd9244a3beef029452854a7.zip chromium_src-692265957630abde6cd9244a3beef029452854a7.tar.gz chromium_src-692265957630abde6cd9244a3beef029452854a7.tar.bz2 |
fix build bustage
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@1365 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/test/reliability')
-rw-r--r-- | chrome/test/reliability/reliability_test_suite.h | 2 | ||||
-rw-r--r-- | chrome/test/reliability/run_all_unittests.cc | 4 |
2 files changed, 1 insertions, 5 deletions
diff --git a/chrome/test/reliability/reliability_test_suite.h b/chrome/test/reliability/reliability_test_suite.h index a07b67c..6170d63 100644 --- a/chrome/test/reliability/reliability_test_suite.h +++ b/chrome/test/reliability/reliability_test_suite.h @@ -18,7 +18,7 @@ protected: virtual void Initialize() { UITestSuite::Initialize(); - SetPageRange(parsed_command_line_); + SetPageRange(CommandLine()); } }; diff --git a/chrome/test/reliability/run_all_unittests.cc b/chrome/test/reliability/run_all_unittests.cc index e6670de..9069b00 100644 --- a/chrome/test/reliability/run_all_unittests.cc +++ b/chrome/test/reliability/run_all_unittests.cc @@ -6,10 +6,6 @@ #include "chrome/test/reliability/reliability_test_suite.h" int main(int argc, char **argv) { - // Some tests may use base::Singleton<>, thus we need to instanciate - // the AtExitManager or else we will leak objects. - base::AtExitManager at_exit_manager; - return ReliabilityTestSuite(argc, argv).Run(); } |