blob: 35ca8cc3c88cda6763e64275c6dd45336d9be997 [file] [log] [blame]
// RUN: rm -rf %t
// RUN: split-file %s %t
// RUN: sed -e "s|DIR|%/t|g" %t/compile-commands.json.in > %t/compile-commands.json
// RUN: clang-scan-deps -compilation-database %t/compile-commands.json -j 1 -format experimental-full \
// RUN: -mode preprocess-dependency-directives > %t/output
// RUN: FileCheck %s < %t/output
// CHECK: "-disable-free",
//--- compile-commands.json.in
[{
"directory": "DIR",
"command": "clang -c DIR/main.c -fmodules -fmodules-cache-path=DIR/module-cache -fimplicit-modules -fimplicit-module-maps",
"file": "DIR/main.c"
}]
//--- module.modulemap
module A {
header "a.h"
}
//--- a.h
void a(void);
//--- main.c
#include "a.h"
void m() {
a();
}