summaryrefslogtreecommitdiffstats
path: root/base/run_all_unittests.cc
diff options
context:
space:
mode:
Diffstat (limited to 'base/run_all_unittests.cc')
-rw-r--r--base/run_all_unittests.cc6
1 files changed, 0 insertions, 6 deletions
diff --git a/base/run_all_unittests.cc b/base/run_all_unittests.cc
index 7b469e2..c0b131f 100644
--- a/base/run_all_unittests.cc
+++ b/base/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) {
- // Set up an AtExitManager so Singleton objects will be destroyed.
- base::AtExitManager at_exit_manager;
-
- CommandLine::SetArgcArgv(argc, argv);
-
return TestSuite(argc, argv).Run();
}