[PATCH] D25470: [libclang] Fix a failure in a test for python bindings on CursorKind.OVERLOAD_CANDIDATE.
Igor Kudrin via cfe-commits
cfe-commits at lists.llvm.org
Tue Oct 18 02:39:53 PDT 2016
This revision was automatically updated to reflect the committed changes.
Closed by commit rL284463: [libclang] Fix a failure in a test for python bindings on CursorKind. (authored by ikudrin).
Changed prior to commit:
https://reviews.llvm.org/D25470?vs=74237&id=74959#toc
Repository:
rL LLVM
https://reviews.llvm.org/D25470
Files:
cfe/trunk/bindings/python/tests/cindex/test_cursor_kind.py
Index: cfe/trunk/bindings/python/tests/cindex/test_cursor_kind.py
===================================================================
--- cfe/trunk/bindings/python/tests/cindex/test_cursor_kind.py
+++ cfe/trunk/bindings/python/tests/cindex/test_cursor_kind.py
@@ -42,7 +42,8 @@
CursorKind.MACRO_DEFINITION,
CursorKind.MACRO_INSTANTIATION,
CursorKind.INCLUSION_DIRECTIVE,
- CursorKind.PREPROCESSING_DIRECTIVE):
+ CursorKind.PREPROCESSING_DIRECTIVE,
+ CursorKind.OVERLOAD_CANDIDATE):
assert len(group) == 0
else:
assert len(group) == 1
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D25470.74959.patch
Type: text/x-patch
Size: 689 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20161018/5ca275b5/attachment.bin>
More information about the cfe-commits
mailing list