summaryrefslogtreecommitdiffstats
path: root/chrome
diff options
context:
space:
mode:
authordarin@google.com <darin@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-08-26 07:09:11 +0000
committerdarin@google.com <darin@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-08-26 07:09:11 +0000
commit036284dcd16ca460fac90dd9d26b80c32e879b05 (patch)
treefc7151ead24998686b735f30e4cf9cbb6512d1d5 /chrome
parent4ac57cb00857849629e86c285890624f0cc6363a (diff)
downloadchromium_src-036284dcd16ca460fac90dd9d26b80c32e879b05.zip
chromium_src-036284dcd16ca460fac90dd9d26b80c32e879b05.tar.gz
chromium_src-036284dcd16ca460fac90dd9d26b80c32e879b05.tar.bz2
fix test running to not spawn another AtExitManager
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@1370 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome')
-rw-r--r--chrome/installer/util/run_all_unittests.cc6
1 files changed, 0 insertions, 6 deletions
diff --git a/chrome/installer/util/run_all_unittests.cc b/chrome/installer/util/run_all_unittests.cc
index 34f39d0..c0b131f 100644
--- a/chrome/installer/util/run_all_unittests.cc
+++ b/chrome/installer/util/run_all_unittests.cc
@@ -2,15 +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/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 TestSuite(argc, argv).Run();
}