blob: 4e89dbb2f49405f90758fb03611951461770f3b2 [file] [log] [blame]
Alex Vakulenko664af902015-02-11 15:33:12 -08001// Copyright 2014 The Chromium OS Authors. All rights reserved.
Alex Vakulenko039da312015-02-03 08:58:55 -08002// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#include <base/at_exit.h>
6#include <gtest/gtest.h>
7
8int main(int argc, char **argv) {
9 base::AtExitManager exit_manager;
10 ::testing::InitGoogleTest(&argc, argv);
11 return RUN_ALL_TESTS();
12}