summaryrefslogtreecommitdiffstats
path: root/unittests/Basic
diff options
context:
space:
mode:
authorBruno Cardoso Lopes <bruno.cardoso@gmail.com>2016-05-10 22:30:01 +0000
committerBruno Cardoso Lopes <bruno.cardoso@gmail.com>2016-05-10 22:30:01 +0000
commit2af00892dd401575011eb17b71a79b107bf9c526 (patch)
tree071ac5408ed31743b3b1dea590c2e3a2815d8889 /unittests/Basic
parent6876b9f77e0db7e8706126523054b8e65abeb059 (diff)
[VFS] One more unittest change to fix win10 buildbot
http://lab.llvm.org:8011/builders/llvm-clang-lld-x86_64-scei-ps4-windows10pro-fast/builds/5110 Follow up from r269100. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@269133 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'unittests/Basic')
-rw-r--r--unittests/Basic/VirtualFileSystemTest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/unittests/Basic/VirtualFileSystemTest.cpp b/unittests/Basic/VirtualFileSystemTest.cpp
index 765b403522..580e298abd 100644
--- a/unittests/Basic/VirtualFileSystemTest.cpp
+++ b/unittests/Basic/VirtualFileSystemTest.cpp
@@ -1085,6 +1085,6 @@ TEST_F(VFSFromYAMLTest, DirectoryIteration) {
checkContents(O->dir_begin("//root/foo/bar", EC),
{"//root/foo/bar/a", "//root/foo/bar/b"});
- checkContents(O->dir_begin("//root/baz", EC),
+ checkContents(O->dir_begin("//root/baz/", EC),
{"//root/baz/x", "//root/baz/y", "//root/baz/c"});
}