xref: /aosp_15_r20/external/angle/src/tests/angle_white_box_tests_main.cpp (revision 8975f5c5ed3d1c378011245431ada316dfb6f244)
1 //
2 // Copyright 2013 The ANGLE Project Authors. All rights reserved.
3 // Use of this source code is governed by a BSD-style license that can be
4 // found in the LICENSE file.
5 //
6 
7 #include "gtest/gtest.h"
8 #include "test_utils/ANGLETest.h"
9 #include "test_utils/runner/TestSuite.h"
10 
main(int argc,char ** argv)11 int main(int argc, char **argv)
12 {
13     angle::TestSuite testSuite(&argc, argv);
14     testing::AddGlobalTestEnvironment(new ANGLETestEnvironment());
15     return testSuite.run();
16 }
17