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 | 09e0d5c1bb206571b28c280632ca1476ae800570 (patch) | |
tree | 801b9afbefc0f609d45c0daf919d617d4f2c1a4d /clang/unittests/Basic/FileManagerTest.cpp | |
parent | d6f9b83ae1a196df4090a10e7b1e9ef5e01f61c6 (diff) | |
download | bcm5719-llvm-09e0d5c1bb206571b28c280632ca1476ae800570.tar.gz bcm5719-llvm-09e0d5c1bb206571b28c280632ca1476ae800570.zip |
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.
llvm-svn: 202442
Diffstat (limited to 'clang/unittests/Basic/FileManagerTest.cpp')
-rw-r--r-- | clang/unittests/Basic/FileManagerTest.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/clang/unittests/Basic/FileManagerTest.cpp b/clang/unittests/Basic/FileManagerTest.cpp index 5b35e687350..113c7fee4c8 100644 --- a/clang/unittests/Basic/FileManagerTest.cpp +++ b/clang/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; |