xref: /aosp_15_r20/external/minigbm/testrunner.cc (revision d95af8df99a05bcb8679a54dc3ab8e5cd312b38e)
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)10 int main(int argc, char **argv)
11 {
12 	testing::InitGoogleTest(&argc, argv);
13 
14 	return RUN_ALL_TESTS();
15 }
16