aboutsummaryrefslogtreecommitdiff
path: root/clang/unittests/Basic/VirtualFileSystemTest.cpp
diff options
context:
space:
mode:
authorBruno Cardoso Lopes <bruno.cardoso@gmail.com>2016-02-23 07:06:12 +0000
committerBruno Cardoso Lopes <bruno.cardoso@gmail.com>2016-02-23 07:06:12 +0000
commitb7eb8db02369b7abf72ba6d06f9064c05f76cbb7 (patch)
treed9521f09a170b085f4b0bb6be193dcea80e3e33b /clang/unittests/Basic/VirtualFileSystemTest.cpp
parent7ccf1373ac8ba9fb1bbae45372e57f2246db9c26 (diff)
downloadllvm-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.cpp2
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);
}