summaryrefslogtreecommitdiffstats
path: root/gfx/angle/src/tests/preprocessor_tests/PreprocessorTest.cpp
blob: b4acd28dff24c41e59368b13f6dfcda5534609bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
//
// Copyright (c) 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"

void PreprocessorTest::preprocess(const char* input, const char* expected)
{
    ASSERT_TRUE(mPreprocessor.init(1, &input, NULL));

    int line = 1;
    pp::Token token;
    std::stringstream stream;
    do
    {
        mPreprocessor.lex(&token);
        for (; line < token.location.line; ++line)
        {
            stream << "\n";
        }
        stream << token;
    } while (token.type != pp::Token::LAST);

    std::string actual = stream.str();
    EXPECT_STREQ(expected, actual.c_str());
}