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 ANGLEProcessTraceTestArgs(int *argc, char **argv); 15 void RegisterTraceTests(); 16 main(int argc,char ** argv)17int main(int argc, char **argv) 18 { 19 ANGLEProcessTraceTestArgs(&argc, argv); 20 RegisterTraceTests(); 21 angle::TestSuite testSuite(&argc, argv); 22 return testSuite.run(); 23 } 24