Skip to content

Commit 40b1277

Browse files
committedMay 18, 2016
[ASTMacther] A follow-up on unresolvedLookupExpr test fixing.
llvm-svn: 269957
1 parent 5e6b35f commit 40b1277

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed
 

Diff for: ‎clang/unittests/ASTMatchers/ASTMatchersNodeTest.cpp

+4-1
Original file line numberDiff line numberDiff line change
@@ -178,13 +178,16 @@ TEST(EnumConstant, Matches) {
178178
}
179179

180180
TEST(Matcher, UnresolvedLookupExpr) {
181+
// FIXME: The test is known to be broken on Windows with delayed template
182+
// parsing.
181183
EXPECT_TRUE(matchesConditionally("template<typename T>"
182184
"T foo() { T a; return a; }"
183185
"template<typename T>"
184186
"void bar() {"
185187
" foo<T>();"
186188
"}",
187-
unresolvedLookupExpr(), true,
189+
unresolvedLookupExpr(),
190+
/*ExpectMatch=*/true,
188191
"-fno-delayed-template-parsing"));
189192
}
190193

0 commit comments

Comments
 (0)
Please sign in to comment.