brintos

brintos / llvm-project-archived public Read only

0
0
Text · 511 B · e825b00 Raw
19 lines · plain
1// Check that a missing VFS errors before trying to scan anything.2 3// RUN: rm -rf %t && split-file %s %t4// RUN: sed -e "s|DIR|%/t|g" %t/build/cdb.json.in > %t/build/cdb.json5// RUN: not clang-scan-deps -compilation-database %t/build/cdb.json \6// RUN:   -format experimental-full 2>&1 | FileCheck %s7 8// CHECK: virtual filesystem overlay file9// CHECK: not found10 11//--- build/cdb.json.in12[{13  "directory": "DIR",14  "command": "clang -c DIR/tu.m -ivfsoverlay DIR/vfs.yaml",15  "file": "DIR/tu.m"16}]17 18//--- tu.m19