Edit

kc3-lang/angle/tests/compiler_tests/compiler_test_main.cpp

Branch :

  • Show log

    Commit

  • Author : Geoff Lang
    Date : 2014-04-24 17:05:40
    Hash : 06bcde59
    Message : Remove gmock the dependency from angle_tests and compiler_tests. BUG=angle:611 Change-Id: Ieb250bda25d62cda3e0690d05d814a4a39062d92 Reviewed-on: https://chromium-review.googlesource.com/197042 Reviewed-by: Jamie Madill <jmadill@chromium.org> Reviewed-by: Shannon Woods <shannonwoods@chromium.org> Tested-by: Geoff Lang <geofflang@chromium.org>

  • tests/compiler_tests/compiler_test_main.cpp
  • //
    // Copyright (c) 2013 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 "gtest/gtest.h"
    #include "GLSLANG/ShaderLang.h"
    
    class CompilerTestEnvironment : public testing::Environment
    {
      public:
        virtual void SetUp()
        {
            if (!ShInitialize())
            {
                FAIL() << "Failed to initialize the compiler.";
            }
        }
    
        virtual void TearDown()
        {
            if (!ShFinalize())
            {
                FAIL() << "Failed to finalize the compiler.";
            }
        }
    };
    
    int main(int argc, char** argv)
    {
        testing::InitGoogleTest(&argc, argv);
        testing::AddGlobalTestEnvironment(new CompilerTestEnvironment());
        int rt = RUN_ALL_TESTS();
        return rt;
    }