forked from OSchip/llvm-project
[unittests/Tooling/DependencyScannerTest] Add a target triple for `ScanDepsWithFS` test
This should fix the `clang-ppc64-aix` builder.
This commit is contained in:
parent
ed93d157de
commit
d1b58cada6
|
@ -207,7 +207,11 @@ TEST(DependencyScanner, ScanDepsReuseFilemanagerHasInclude) {
|
|||
}
|
||||
|
||||
TEST(DependencyScanner, ScanDepsWithFS) {
|
||||
std::vector<std::string> CommandLine = {"clang", "-c", "test.cpp",
|
||||
std::vector<std::string> CommandLine = {"clang",
|
||||
"-target",
|
||||
"x86_64-apple-macosx10.7",
|
||||
"-c",
|
||||
"test.cpp",
|
||||
"-o"
|
||||
"test.cpp.o"};
|
||||
StringRef CWD = "/root";
|
||||
|
|
Loading…
Reference in New Issue