diff options
author | Bruno Cardoso Lopes <bruno.cardoso@gmail.com> | 2016-02-23 07:06:12 +0000 |
---|---|---|
committer | Bruno Cardoso Lopes <bruno.cardoso@gmail.com> | 2016-02-23 07:06:12 +0000 |
commit | b7eb8db02369b7abf72ba6d06f9064c05f76cbb7 (patch) | |
tree | d9521f09a170b085f4b0bb6be193dcea80e3e33b /clang/unittests/Basic/VirtualFileSystemTest.cpp | |
parent | 7ccf1373ac8ba9fb1bbae45372e57f2246db9c26 (diff) | |
download | llvm-b7eb8db02369b7abf72ba6d06f9064c05f76cbb7.zip llvm-b7eb8db02369b7abf72ba6d06f9064c05f76cbb7.tar.gz llvm-b7eb8db02369b7abf72ba6d06f9064c05f76cbb7.tar.bz2 |
Revert "[VFS] Add 'overlay-relative' field to YAML files" and "[VFS] Fix call to getVFSFromYAML in unittests"
This reverts commit r261552 and r261556 because of failing unittests on
windows:
Failing Tests (4):
Clang-Unit :: Basic/BasicTests.exe/VFSFromYAMLTest.CaseInsensitive
Clang-Unit :: Basic/BasicTests.exe/VFSFromYAMLTest.DirectoryIteration
Clang-Unit :: Basic/BasicTests.exe/VFSFromYAMLTest.MappedFiles
Clang-Unit :: Basic/BasicTests.exe/VFSFromYAMLTest.UseExternalName
llvm-svn: 261613
Diffstat (limited to 'clang/unittests/Basic/VirtualFileSystemTest.cpp')
-rw-r--r-- | clang/unittests/Basic/VirtualFileSystemTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/unittests/Basic/VirtualFileSystemTest.cpp b/clang/unittests/Basic/VirtualFileSystemTest.cpp index d2f4a7d..9448ad4 100644 --- a/clang/unittests/Basic/VirtualFileSystemTest.cpp +++ b/clang/unittests/Basic/VirtualFileSystemTest.cpp @@ -662,7 +662,7 @@ public: getFromYAMLRawString(StringRef Content, IntrusiveRefCntPtr<vfs::FileSystem> ExternalFS) { std::unique_ptr<MemoryBuffer> Buffer = MemoryBuffer::getMemBuffer(Content); - return getVFSFromYAML(std::move(Buffer), CountingDiagHandler, "", this, + return getVFSFromYAML(std::move(Buffer), CountingDiagHandler, this, ExternalFS); } |