19 lines
485 B
C++
19 lines
485 B
C++
//
|
|
// Copyright 2021 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.
|
|
//
|
|
// Generic entry point for test suites.
|
|
|
|
#include "gtest/gtest.h"
|
|
#include "test_utils/runner/TestSuite.h"
|
|
|
|
void ANGLEProcessTestArgs(int *argc, char *argv[]);
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
angle::TestSuite testSuite(&argc, argv);
|
|
ANGLEProcessTestArgs(&argc, argv);
|
|
return testSuite.run();
|
|
}
|