• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 //
2 // Copyright 2021 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 // Generic entry point for test suites.
7 
8 #include "gtest/gtest.h"
9 #include "test_utils/runner/TestSuite.h"
10 
11 void ANGLEProcessTestArgs(int *argc, char *argv[]);
12 
main(int argc,char ** argv)13 int main(int argc, char **argv)
14 {
15     angle::TestSuite testSuite(&argc, argv);
16     ANGLEProcessTestArgs(&argc, argv);
17     return testSuite.run();
18 }
19