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 <gtest/gtest.h> 8 9 #include <base/at_exit.h> 10 #include <brillo/test_helpers.h> 11 main(int argc,char ** argv)12int main(int argc, char** argv) { 13 base::AtExitManager at_exit_manager; 14 SetUpTests(&argc, argv, true); 15 return RUN_ALL_TESTS(); 16 } 17