mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-24 14:05:49 -04:00

Replacements were no applied when using a compilation database with paths in the compilation command relative to the compile directory. This patch makes those paths abosulte. llvm-svn: 191776
11 lines
408 B
C++
11 lines
408 B
C++
// This block test a compilation database with files relative to the directory
|
|
// RUN: rm -rf %t
|
|
// RUN: mkdir %t
|
|
// RUN: echo '[{"directory":"%t","command":"clang++ -c test.cpp","file":"test.cpp"}]' | sed -e 's/\\/\//g' > %t/compile_commands.json
|
|
// RUN: cp "%s" "%t/test.cpp"
|
|
// RUN: not clang-check -p "%t" "%t/test.cpp" 2>&1|FileCheck %s
|
|
// FIXME: Make the above easier.
|
|
|
|
// CHECK: C++ requires
|
|
invalid;
|