chromium/third_party/angle/src/tests/preprocessor_tests/pragma_test.cpp

//
// Copyright 2012 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 "PreprocessorTest.h"
#include "compiler/preprocessor/Token.h"

namespace angle
{

class PragmaTest : public SimplePreprocessorTest
{};

TEST_F(PragmaTest, EmptyName)
{}

TEST_F(PragmaTest, EmptyValue)
{}

TEST_F(PragmaTest, NameValue)
{}

TEST_F(PragmaTest, STDGL)
{}

TEST_F(PragmaTest, STDGLInvariantAll)
{}

TEST_F(PragmaTest, Comments)
{}

TEST_F(PragmaTest, MissingNewline)
{}

class InvalidPragmaTest : public PragmaTest, public testing::WithParamInterface<const char *>
{};

TEST_P(InvalidPragmaTest, Identified)
{}

INSTANTIATE_TEST_SUITE_P();  // Extra tokens.

}  // namespace angle