• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 //
2 // Copyright 2014 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 // angle_perftests_main.cpp
7 //   Entry point for the gtest-based performance tests.
8 //
9 
10 #include <gtest/gtest.h>
11 
12 #include "test_utils/runner/TestSuite.h"
13 
14 void ANGLEProcessPerfTestArgs(int *argc, char **argv);
15 
main(int argc,char ** argv)16 int main(int argc, char **argv)
17 {
18     angle::TestSuite testSuite(&argc, argv);
19     ANGLEProcessPerfTestArgs(&argc, argv);
20     return testSuite.run();
21 }
22