summaryrefslogtreecommitdiffstats
path: root/test/Index/find-defs.c
blob: 51292704a1b647e588debb24d30476e0869e92a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// RUN: %clang_cc1 -fblocks -emit-pch %S/Inputs/t1.c -o %t1.ast
// RUN: %clang_cc1 -fblocks -emit-pch %S/Inputs/t2.c -o %t2.ast

// RUN: index-test %t1.ast %t2.ast -point-at %S/Inputs/foo.h:1:14 -print-defs > %t
// RUN: cat %t | count 1
// RUN: grep 't2.c:3:5,' %t

// RUN: index-test %t1.ast %t2.ast -point-at %S/Inputs/foo.h:3:9 -print-defs > %t
// RUN: cat %t | count 1
// RUN: grep 't1.c:3:6,' %t

// RUN: index-test %t1.ast %t2.ast -point-at %S/Inputs/foo.h:4:9 -print-defs > %t
// RUN: cat %t | count 1
// RUN: grep 't2.c:5:6,' %t

// RUN: index-test %t1.ast %t2.ast -point-at %S/Inputs/t1.c:8:7 -print-defs > %t
// RUN: cat %t | count 1
// RUN: grep 't2.c:5:6,' %t