[unittests/Tooling/DependencyScannerTest] Add a target triple for `ScanDepsWithFS` test

This should fix the `clang-ppc64-aix` builder.
This commit is contained in:
Argyrios Kyrtzidis 2022-07-18 16:53:16 -07:00
parent ed93d157de
commit d1b58cada6
1 changed files with 5 additions and 1 deletions

View File

@ -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";