From: David Blaikie Date: Wed, 7 Nov 2012 17:17:07 +0000 (+0000) Subject: Test for source location range of new expressions fixed in r167507. X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b9db60fbce070a0eef80de620ac59b2a1b8869ec;p=platform%2Fupstream%2Fllvm.git Test for source location range of new expressions fixed in r167507. Patch by Philip Craig. llvm-svn: 167538 --- diff --git a/clang/unittests/AST/SourceLocationTest.cpp b/clang/unittests/AST/SourceLocationTest.cpp index 73415b5..7d6e0c3 100644 --- a/clang/unittests/AST/SourceLocationTest.cpp +++ b/clang/unittests/AST/SourceLocationTest.cpp @@ -248,5 +248,11 @@ TEST(ParmVarDecl, KNRRange) { EXPECT_TRUE(Verifier.match("void f(i) {}", varDecl(), Lang_C)); } +TEST(CXXNewExpr, ArrayRange) { + RangeVerifier Verifier; + Verifier.expectRange(1, 12, 1, 22); + EXPECT_TRUE(Verifier.match("void f() { new int[10]; }", newExpr())); +} + } // end namespace ast_matchers } // end namespace clang