None of these tests actually require bash, they just have quoting bugs when paths contain backslashes and colons. Fix them with the "%/T" lit substitution variants. llvm-svn: 278815
9 lines
210 B
C++
9 lines
210 B
C++
// RUN: sed -e 's#//.*$##' %s > %t.cpp
|
|
// RUN: clang-include-fixer -db=fixed -input='foo= "foo.h","bar.h"' %t.cpp --
|
|
// RUN: FileCheck %s -input-file=%t.cpp
|
|
|
|
// CHECK: #include "foo.h"
|
|
// CHECK: foo f;
|
|
|
|
foo f;
|