summaryrefslogtreecommitdiffstats
path: root/gfx/angle/src/tests/gles_conformance_tests/gles_conformance_tests_main.cpp
blob: 0b95d5c89457bb79bf1933cfd231414c7d5b9824 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//
// Copyright (c) 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.
//

#include "gles_conformance_tests.h"

#include "gtest/gtest.h"

#include <EGL/egl.h>
#include <EGL/eglext.h>

#include <map>
#include <string>
#include <vector>

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