xref: /aosp_15_r20/external/libbrillo/testrunner.cc (revision 1a96fba65179ea7d3f56207137718607415c5953)
1*1a96fba6SXin Li // Copyright (c) 2009 The Chromium OS Authors. All rights reserved.
2*1a96fba6SXin Li // Use of this source code is governed by a BSD-style license that can be
3*1a96fba6SXin Li // found in the LICENSE file.
4*1a96fba6SXin Li 
5*1a96fba6SXin Li // based on pam_google_testrunner.cc
6*1a96fba6SXin Li 
7*1a96fba6SXin Li #include <gtest/gtest.h>
8*1a96fba6SXin Li 
9*1a96fba6SXin Li #include <base/at_exit.h>
10*1a96fba6SXin Li #include <brillo/test_helpers.h>
11*1a96fba6SXin Li 
main(int argc,char ** argv)12*1a96fba6SXin Li int main(int argc, char** argv) {
13*1a96fba6SXin Li   base::AtExitManager at_exit_manager;
14*1a96fba6SXin Li   SetUpTests(&argc, argv, true);
15*1a96fba6SXin Li   return RUN_ALL_TESTS();
16*1a96fba6SXin Li }
17