[cfe-commits] r151504 - /cfe/trunk/bindings/python/tests/cindex/test_cursor.py

Gregory Szorc gregory.szorc at gmail.com
Sun Feb 26 13:56:33 PST 2012


Author: gps
Date: Sun Feb 26 15:56:32 2012
New Revision: 151504

URL: http://llvm.org/viewvc/llvm-project?rev=151504&view=rev
Log:
[clang.py] Test Cursor.__ne__

Modified:
    cfe/trunk/bindings/python/tests/cindex/test_cursor.py

Modified: cfe/trunk/bindings/python/tests/cindex/test_cursor.py
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/bindings/python/tests/cindex/test_cursor.py?rev=151504&r1=151503&r2=151504&view=diff
==============================================================================
--- cfe/trunk/bindings/python/tests/cindex/test_cursor.py (original)
+++ cfe/trunk/bindings/python/tests/cindex/test_cursor.py Sun Feb 26 15:56:32 2012
@@ -36,6 +36,7 @@
 
     assert len(tu_nodes) == 3
 
+    assert tu_nodes[0] != tu_nodes[1]
     assert tu_nodes[0].kind == CursorKind.STRUCT_DECL
     assert tu_nodes[0].spelling == 's0'
     assert tu_nodes[0].is_definition() == True





More information about the cfe-commits mailing list