1 /* Copyright 2023 The ChromiumOS Authors 2 * Use of this source code is governed by a BSD-style license that can be 3 * found in the LICENSE file. 4 * 5 * Main entrypoint for gtest. 6 */ 7 8 #include <gtest/gtest.h> 9 main(int argc,char ** argv)10int main(int argc, char **argv) 11 { 12 testing::InitGoogleTest(&argc, argv); 13 14 return RUN_ALL_TESTS(); 15 } 16