[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / clang / test / Index / cindex-from-source.m
blob5ea8504d673e76b9c158b65f0a21e0da8d8668f6
1 // REQUIRES: native
2 // RUN: c-index-test -write-pch %t.pfx.h.gch -x objective-c-header %S/Inputs/cindex-from-source.h
3 // RUN: c-index-test -test-load-source local %s -include %t.pfx.h > %t
4 // RUN: FileCheck %s < %t
5 // CHECK: cindex-from-source.m:{{.*}}:{{.*}}: StructDecl=s0:{{.*}}:{{.*}}
6 // CHECK: cindex-from-source.m:{{.*}}:{{.*}}: VarDecl=g0:{{.*}}:{{.*}}
7 // CHECK: cindex-from-source.m:9:1: TypeRef=t0:1:13 Extent=[9:1 - 9:3]
8 struct s0 {};
9 t0 g0;
11 // RUN: c-index-test -test-load-source-reparse 5 local %s -include %t.pfx.h > %t
12 // RUN: FileCheck %s < %t