[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / clang / test / ClangScanDeps / symlink.cpp
blobd262f8c7f1d95c583e8166eaceb93e55851e6e42
1 // REQUIRES: shell
2 // RUN: rm -rf %t.dir
3 // RUN: rm -rf %t.cdb
4 // RUN: mkdir -p %t.dir
5 // RUN: cp %s %t.dir/symlink_input.cpp
6 // RUN: cp %s %t.dir/symlink_input2.cpp
7 // RUN: mkdir %t.dir/Inputs
8 // RUN: cp %S/Inputs/header.h %t.dir/Inputs/header.h
9 // RUN: ln -s %t.dir/Inputs/header.h %t.dir/Inputs/symlink.h
10 // RUN: sed -e "s|DIR|%/t.dir|g" %S/Inputs/symlink_cdb.json > %t.cdb
11 // RUN: clang-scan-deps -compilation-database %t.cdb -j 1 | FileCheck %s
13 #include "symlink.h"
14 #include "header.h"
16 // CHECK: symlink_input.cpp
17 // CHECK-NEXT: Inputs{{/|\\}}symlink.h
18 // CHECK-NEXT: Inputs{{/|\\}}header.h
20 // CHECK: symlink_input2.cpp
21 // CHECK-NEXT: Inputs{{/|\\}}symlink.h
22 // CHECK-NEXT: Inputs{{/|\\}}header.h