[PATCH] D45692: [clangd] Fix "fail to create file URI" warnings in FileIndexTest.
Haojian Wu via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Tue Apr 17 01:38:09 PDT 2018
This revision was automatically updated to reflect the committed changes.
Closed by commit rL330182: [clangd] Fix "fail to create file URI" warnings in FileIndexTest. (authored by hokein, committed by ).
Herald added a subscriber: llvm-commits.
Repository:
rL LLVM
https://reviews.llvm.org/D45692
Files:
clang-tools-extra/trunk/unittests/clangd/FileIndexTests.cpp
Index: clang-tools-extra/trunk/unittests/clangd/FileIndexTests.cpp
===================================================================
--- clang-tools-extra/trunk/unittests/clangd/FileIndexTests.cpp
+++ clang-tools-extra/trunk/unittests/clangd/FileIndexTests.cpp
@@ -94,8 +94,8 @@
"BasePath must be a base file path without extension.");
llvm::IntrusiveRefCntPtr<vfs::InMemoryFileSystem> VFS(
new vfs::InMemoryFileSystem);
- std::string Path = (BasePath + ".cpp").str();
- std::string Header = (BasePath + ".h").str();
+ std::string Path = testPath((BasePath + ".cpp").str());
+ std::string Header = testPath((BasePath + ".h").str());
VFS->addFile(Path, 0, llvm::MemoryBuffer::getMemBuffer(""));
VFS->addFile(Header, 0, llvm::MemoryBuffer::getMemBuffer(Code));
const char *Args[] = {"clang", "-xc++", "-include", Header.c_str(),
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D45692.142747.patch
Type: text/x-patch
Size: 862 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20180417/5771738b/attachment.bin>
More information about the cfe-commits
mailing list