summaryrefslogtreecommitdiffstats
path: root/gfx/angle/src/tests/deqp_support/angle_deqp_gtest_main.cpp
blob: 154820a26b88dda9a54ce3af1b7104cb8a76b4dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//
// Copyright 2015 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_deqp_gtest_main:
//   Entry point for standalone dEQP tests.

#include <gtest/gtest.h>

#include "angle_deqp_libtester.h"

int main(int argc, char **argv)
{
    testing::InitGoogleTest(&argc, argv);
    int rt = RUN_ALL_TESTS();
    deqp_libtester_shutdown_platform();
    return rt;
}