| Alex Vakulenko | 039da31 | 2015-02-03 08:58:55 -0800 | [diff] [blame^] | 1 | // Copyright (c) 2014 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 | |||||
| 5 | #include <base/at_exit.h> | ||||
| 6 | #include <gtest/gtest.h> | ||||
| 7 | |||||
| 8 | int main(int argc, char **argv) { | ||||
| 9 | base::AtExitManager exit_manager; | ||||
| 10 | ::testing::InitGoogleTest(&argc, argv); | ||||
| 11 | return RUN_ALL_TESTS(); | ||||
| 12 | } | ||||