blob: f31439e6284181ae1f605a57078cb25de05359bf [file] [log] [blame]
Paul Stewart75897df2011-04-27 09:05:53 -07001// Copyright (c) 2011 The Chromium OS 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.
4
Chris Masone0e1d1042011-05-09 18:07:03 -07005#include <base/at_exit.h>
Paul Stewart75897df2011-04-27 09:05:53 -07006#include <gtest/gtest.h>
Paul Stewart75897df2011-04-27 09:05:53 -07007
8int main(int argc, char** argv) {
Chris Masone0e1d1042011-05-09 18:07:03 -07009 base::AtExitManager exit_manager;
Paul Stewart75897df2011-04-27 09:05:53 -070010 ::testing::InitGoogleTest(&argc, argv);
Paul Stewart75897df2011-04-27 09:05:53 -070011 return RUN_ALL_TESTS();
12}