r284463 - [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:30:33 PDT 2016
Author: ikudrin
Date: Tue Oct 18 04:30:33 2016
New Revision: 284463
URL: http://llvm.org/viewvc/llvm-project?rev=284463&view=rev
Log:
[libclang] Fix a failure in a test for python bindings on CursorKind.OVERLOAD_CANDIDATE.
The test fails because the value does not lay in any existing group.
Differential Revision: https://reviews.llvm.org/D25470
Modified:
cfe/trunk/bindings/python/tests/cindex/test_cursor_kind.py
Modified: cfe/trunk/bindings/python/tests/cindex/test_cursor_kind.py
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/bindings/python/tests/cindex/test_cursor_kind.py?rev=284463&r1=284462&r2=284463&view=diff
==============================================================================
--- cfe/trunk/bindings/python/tests/cindex/test_cursor_kind.py (original)
+++ cfe/trunk/bindings/python/tests/cindex/test_cursor_kind.py Tue Oct 18 04:30:33 2016
@@ -42,7 +42,8 @@ def test_kind_groups():
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
More information about the cfe-commits
mailing list