[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / clang / test / Index / index-module-with-vfs.m
blob06944d372d49bcbfcd9d722cbad3100e82cadc7f
1 @import ModuleNeedsVFS;
3 void foo() {
4   module_needs_vfs();
5   base_module_needs_vfs();
8 // RUN: rm -rf %t.cache
9 // RUN: sed -e "s@INPUT_DIR@%{/S:regex_replacement}/Inputs@g" -e "s@OUT_DIR@%{/t:regex_replacement}@g" %S/Inputs/vfsoverlay.yaml > %t.yaml
10 // RUN: c-index-test -index-file %s -fmodules-cache-path=%t.cache -fmodules -F %t -I %t \
11 // RUN:              -ivfsoverlay %t.yaml -Xclang -fdisable-module-hash | FileCheck %s
13 // CHECK: [importedASTFile]: {{.*}}ModuleNeedsVFS.pcm | loc: 1:1 | name: "ModuleNeedsVFS" | isImplicit: 0
14 // CHECK: [indexEntityReference]: kind: function | name: module_needs_vfs
15 // CHECK: [indexEntityReference]: kind: function | name: base_module_needs_vfs
17 // RUN: c-index-test -index-tu %t.cache/ModuleNeedsVFS.pcm | FileCheck %s -check-prefix=CHECK-MOD
19 // CHECK-MOD: [ppIncludedFile]: {{.*}}module_needs_vfs.h 
20 // CHECK-MOD: [importedASTFile]: {{.*}}BaseModuleNeedsVFS.pcm
21 // CHECK-MOD: [indexEntityReference]: kind: function | name: base_module_needs_vfs
23 // RUN: c-index-test -index-tu %t.cache/BaseModuleNeedsVFS.pcm | FileCheck %s -check-prefix=CHECK-MOD2
25 // CHECK-MOD2: [ppIncludedFile]: {{.*}}base_module_needs_vfs.h