[cfe-commits] r143638 - /cfe/trunk/test/Index/targeted-cursor.c
Argyrios Kyrtzidis
akyrtzi at gmail.com
Thu Nov 3 12:02:31 PDT 2011
Author: akirtzidis
Date: Thu Nov 3 14:02:30 2011
New Revision: 143638
URL: http://llvm.org/viewvc/llvm-project?rev=143638&view=rev
Log:
[libclang] Make sure pointing inside the #include of the fields will return the struct.
Modified:
cfe/trunk/test/Index/targeted-cursor.c
Modified: cfe/trunk/test/Index/targeted-cursor.c
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Index/targeted-cursor.c?rev=143638&r1=143637&r2=143638&view=diff
==============================================================================
--- cfe/trunk/test/Index/targeted-cursor.c (original)
+++ cfe/trunk/test/Index/targeted-cursor.c Thu Nov 3 14:02:30 2011
@@ -25,6 +25,11 @@
// RUN: -Xclang -error-on-deserialized-decl=TopVar \
// RUN: | FileCheck %s -check-prefix=FIELD-CURSOR1
+// RUN: env CINDEXTEST_FAILONERROR=1 c-index-test -cursor-at=%S/targeted-fields.h:1:1 %s -include %t.h \
+// RUN: -Xclang -error-on-deserialized-decl=NestedVar1 \
+// RUN: -Xclang -error-on-deserialized-decl=TopVar \
+// RUN: | FileCheck %s -check-prefix=FIELD-CURSOR2
+
// RUN: env CINDEXTEST_FAILONERROR=1 CINDEXTEST_EDITING=1 CINDEXTEST_COMPLETION_NO_CACHING=1 \
// RUN: c-index-test -cursor-at=%s:5:10 %s -include %t.h \
// RUN: -Xclang -error-on-deserialized-decl=PreambleVar \
@@ -55,4 +60,6 @@
// TOP-CURSOR1: VarDecl=TopVar:11:12
// NESTED-CURSOR1: VarDecl=NestedVar1:2:12
// PREAMBLE-CURSOR1: VarDecl=PreambleVar:2:12
+
// FIELD-CURSOR1: FieldDecl=z:2:7 (Definition)
+// FIELD-CURSOR2: StructDecl=:13:9 (Definition)
More information about the cfe-commits
mailing list