diff options
author | Samuel Benzaquen <sbenza@google.com> | 2014-10-06 13:14:30 +0000 |
---|---|---|
committer | Samuel Benzaquen <sbenza@google.com> | 2014-10-06 13:14:30 +0000 |
commit | a117002d93b1f0e9488a68d5d3b540ca795bc9e5 (patch) | |
tree | 71f19d127eb772033bf647f2b86152bac7d43702 /clang/unittests/AST | |
parent | faef77480d0ff27dca79b4a60f6863bf97d30854 (diff) | |
download | bcm5719-llvm-a117002d93b1f0e9488a68d5d3b540ca795bc9e5.tar.gz bcm5719-llvm-a117002d93b1f0e9488a68d5d3b540ca795bc9e5.zip |
Fix bug in DynTypedMatcher::constructVariadic() that would cause false negatives.
Summary:
DynTypedMatcher::constructVariadic() where the restrict kind of the
different matchers are not related causes the matcher to have a "None"
restrict kind. This causes false negatives for anyOf and eachOf.
Change the logic to get a common ancestor if there is one.
Also added regression tests that fail without the fix.
Reviewers: klimek
Subscribers: klimek, cfe-commits
Differential Revision: http://reviews.llvm.org/D5580
llvm-svn: 219118
Diffstat (limited to 'clang/unittests/AST')
-rw-r--r-- | clang/unittests/AST/ASTTypeTraitsTest.cpp | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/clang/unittests/AST/ASTTypeTraitsTest.cpp b/clang/unittests/AST/ASTTypeTraitsTest.cpp index 0e73f761692..eeb01ccad1d 100644 --- a/clang/unittests/AST/ASTTypeTraitsTest.cpp +++ b/clang/unittests/AST/ASTTypeTraitsTest.cpp @@ -26,6 +26,12 @@ template <typename T> static ASTNodeKind DNT() { return ASTNodeKind::getFromNodeKind<T>(); } +TEST(ASTNodeKind, IsNone) { + EXPECT_TRUE(ASTNodeKind().isNone()); + EXPECT_FALSE(DNT<Decl>().isNone()); + EXPECT_FALSE(DNT<VarDecl>().isNone()); +} + TEST(ASTNodeKind, Bases) { EXPECT_TRUE(DNT<Decl>().isBaseOf(DNT<VarDecl>())); EXPECT_FALSE(DNT<Decl>().isSame(DNT<VarDecl>())); @@ -60,6 +66,39 @@ TEST(ASTNodeKind, DiffBase) { EXPECT_FALSE(DNT<Type>().isSame(DNT<QualType>())); } +TEST(ASTNodeKind, MostDerivedType) { + EXPECT_TRUE(DNT<BinaryOperator>().isSame( + ASTNodeKind::getMostDerivedType(DNT<Expr>(), DNT<BinaryOperator>()))); + EXPECT_TRUE(DNT<BinaryOperator>().isSame( + ASTNodeKind::getMostDerivedType(DNT<BinaryOperator>(), DNT<Expr>()))); + EXPECT_TRUE(DNT<VarDecl>().isSame( + ASTNodeKind::getMostDerivedType(DNT<VarDecl>(), DNT<VarDecl>()))); + + // Not related. Returns nothing. + EXPECT_TRUE( + ASTNodeKind::getMostDerivedType(DNT<IfStmt>(), DNT<VarDecl>()).isNone()); + EXPECT_TRUE(ASTNodeKind::getMostDerivedType(DNT<IfStmt>(), + DNT<BinaryOperator>()).isNone()); +} + +TEST(ASTNodeKind, MostDerivedCommonAncestor) { + EXPECT_TRUE(DNT<Expr>().isSame(ASTNodeKind::getMostDerivedCommonAncestor( + DNT<Expr>(), DNT<BinaryOperator>()))); + EXPECT_TRUE(DNT<Expr>().isSame(ASTNodeKind::getMostDerivedCommonAncestor( + DNT<BinaryOperator>(), DNT<Expr>()))); + EXPECT_TRUE(DNT<VarDecl>().isSame(ASTNodeKind::getMostDerivedCommonAncestor( + DNT<VarDecl>(), DNT<VarDecl>()))); + + // A little related. Returns the ancestor. + EXPECT_TRUE( + DNT<NamedDecl>().isSame(ASTNodeKind::getMostDerivedCommonAncestor( + DNT<CXXMethodDecl>(), DNT<RecordDecl>()))); + + // Not related. Returns nothing. + EXPECT_TRUE(ASTNodeKind::getMostDerivedCommonAncestor( + DNT<IfStmt>(), DNT<VarDecl>()).isNone()); +} + struct Foo {}; TEST(ASTNodeKind, UnknownKind) { |