1 // Copyright (c) 2009 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 // based on pam_google_testrunner.cc 6 7 #include <glib-object.h> 8 #include <gtest/gtest.h> 9 10 #include <base/at_exit.h> 11 #include <brillo/test_helpers.h> 12 main(int argc,char ** argv)13int main(int argc, char** argv) { 14 base::AtExitManager at_exit_manager; 15 ::g_type_init(); 16 SetUpTests(&argc, argv, true); 17 return RUN_ALL_TESTS(); 18 } 19