diff options
author | Ben Langmuir <blangmuir@apple.com> | 2014-02-27 23:27:54 +0000 |
---|---|---|
committer | Ben Langmuir <blangmuir@apple.com> | 2014-02-27 23:27:54 +0000 |
commit | 2b1bc151cb3d274c5bd4bcae27986068f9e88942 (patch) | |
tree | c2177f1de82abc4e3a8588c80da701a63b456ad0 /unittests/Basic/FileManagerTest.cpp | |
parent | 9e229d2b0b2161ac4dd0ae832061915afd721b1d (diff) | |
download | clang-2b1bc151cb3d274c5bd4bcae27986068f9e88942.tar.gz |
Honour 'use-external-names' in FileManager
Pass through the externally-visible names that we got from the VFS down
to FileManager, and test that this is the name showing up in __FILE__,
diagnostics, and debug information.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@202442 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'unittests/Basic/FileManagerTest.cpp')
-rw-r--r-- | unittests/Basic/FileManagerTest.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/unittests/Basic/FileManagerTest.cpp b/unittests/Basic/FileManagerTest.cpp index 5b35e68735..113c7fee4c 100644 --- a/unittests/Basic/FileManagerTest.cpp +++ b/unittests/Basic/FileManagerTest.cpp @@ -30,6 +30,7 @@ private: FileData Data; memset(&Data, 0, sizeof(FileData)); llvm::sys::fs::UniqueID ID(1, INode); + Data.Name = Path; Data.UniqueID = ID; Data.IsDirectory = !IsFile; StatCalls[Path] = Data; |