summaryrefslogtreecommitdiff
path: root/tests/compiler_tests/compiler_test_main.cpp
blob: 02582ad696de559d50e29806c84f7eb4c01497f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright (c) 2012 The Chromium 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 "gmock/gmock.h"
#include "gtest/gtest.h"
#include "GLSLANG/ShaderLang.h"

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