diff options
Diffstat (limited to 'clang/unittests/Lex/LexerTest.cpp')
-rw-r--r-- | clang/unittests/Lex/LexerTest.cpp | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/clang/unittests/Lex/LexerTest.cpp b/clang/unittests/Lex/LexerTest.cpp index 7b14f56201e..320b60ea639 100644 --- a/clang/unittests/Lex/LexerTest.cpp +++ b/clang/unittests/Lex/LexerTest.cpp @@ -513,23 +513,4 @@ TEST_F(LexerTest, StringizingRasString) { EXPECT_EQ(String6, R"(a\\\n\n\n \\\\b)"); } -TEST_F(LexerTest, CharRangeOffByOne) { - std::vector<Token> toks = Lex(R"(#define MOO 1 - void foo() { MOO; })"); - const Token &moo = toks[5]; - - EXPECT_EQ(getSourceText(moo, moo), "MOO"); - - SourceRange R{moo.getLocation(), moo.getLocation()}; - - EXPECT_TRUE( - Lexer::isAtStartOfMacroExpansion(R.getBegin(), SourceMgr, LangOpts)); - EXPECT_TRUE( - Lexer::isAtEndOfMacroExpansion(R.getEnd(), SourceMgr, LangOpts)); - - CharSourceRange CR = Lexer::getAsCharRange(R, SourceMgr, LangOpts); - - EXPECT_EQ(Lexer::getSourceText(CR, SourceMgr, LangOpts), "MOO"); // Was "MO". -} - } // anonymous namespace |