From: Ben Langmuir Date: Mon, 7 Jul 2014 17:34:37 +0000 (+0000) Subject: Use temporary module cache in test X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e218cd77b4d49da5ebf9e978d510a4a612eab8fd;p=platform%2Fupstream%2Fllvm.git Use temporary module cache in test llvm-svn: 212467 --- diff --git a/clang/unittests/libclang/LibclangTest.cpp b/clang/unittests/libclang/LibclangTest.cpp index 8f2694f..ef162bc 100644 --- a/clang/unittests/libclang/LibclangTest.cpp +++ b/clang/unittests/libclang/LibclangTest.cpp @@ -434,7 +434,9 @@ TEST_F(LibclangReparseTest, ReparseWithModule) { WriteFile(HeaderName, std::string(HeaderTop) + HeaderBottom); WriteFile(ModName, ModFile); - const char *Args[] = { "-fmodules", "-I", TestDir.c_str() }; + std::string ModulesCache = std::string("-fmodules-cache-path=") + TestDir; + const char *Args[] = { "-fmodules", ModulesCache.c_str(), + "-I", TestDir.c_str() }; int NumArgs = sizeof(Args) / sizeof(Args[0]); ClangTU = clang_parseTranslationUnit(Index, MName.c_str(), Args, NumArgs, nullptr, 0, TUFlags);