blob: 7b469e2723d905f756fab3b1677828788b1b5bbd [file] [log] [blame]
license.botf003cfe2008-08-24 09:55:55 +09001// 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
3// found in the LICENSE file.
initial.commit3f4a7322008-07-27 06:49:38 +09004
cpu@google.comb90f1cd2008-08-01 12:06:25 +09005#include "base/at_exit.h"
initial.commit3f4a7322008-07-27 06:49:38 +09006#include "base/test_suite.h"
7
8int main(int argc, char** argv) {
mmentovai@google.com8e0030d2008-08-14 22:50:50 +09009 // Set up an AtExitManager so Singleton objects will be destroyed.
10 base::AtExitManager at_exit_manager;
cpu@google.comb90f1cd2008-08-01 12:06:25 +090011
evanm@google.com638e9fb2008-08-12 10:14:37 +090012 CommandLine::SetArgcArgv(argc, argv);
13
initial.commit3f4a7322008-07-27 06:49:38 +090014 return TestSuite(argc, argv).Run();
15}
license.botf003cfe2008-08-24 09:55:55 +090016