blob: 1c5105395fcec5f89035b0a5431e5491ccf7749b [file] [log] [blame]
//
// Copyright 2014 The ANGLE Project Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
//
// angle_perftests_main.cpp
// Entry point for the gtest-based performance tests.
//
#include <gtest/gtest.h>
#include "test_utils/runner/TestSuite.h"
void ANGLEProcessPerfTestArgs(int *argc, char **argv);
int main(int argc, char **argv)
{
ANGLEProcessPerfTestArgs(&argc, argv);
angle::TestSuite testSuite(&argc, argv);
return testSuite.run();
}