Make the negative test of recordType depend on a specific record.

Otherwise it'll break if there's a record type in the AST by default.

llvm-svn: 176181
This commit is contained in:
Manuel Klimek 2013-02-27 11:56:58 +00:00
parent 8e55927153
commit 59b0af6381
1 changed files with 4 additions and 2 deletions

View File

@ -3436,8 +3436,10 @@ TEST(TypeMatching, MatchesTemplateSpecializationType) {
TEST(TypeMatching, MatchesRecordType) {
EXPECT_TRUE(matches("class C{}; C c;", recordType()));
EXPECT_TRUE(matches("struct S{}; S s;", recordType()));
EXPECT_TRUE(notMatches("int i;", recordType()));
EXPECT_TRUE(matches("struct S{}; S s;",
recordType(hasDeclaration(recordDecl(hasName("S"))))));
EXPECT_TRUE(notMatches("int i;",
recordType(hasDeclaration(recordDecl(hasName("S"))))));
}
TEST(TypeMatching, MatchesElaboratedType) {