diff options
author | Bruno Cardoso Lopes <bruno.cardoso@gmail.com> | 2016-05-10 22:30:01 +0000 |
---|---|---|
committer | Bruno Cardoso Lopes <bruno.cardoso@gmail.com> | 2016-05-10 22:30:01 +0000 |
commit | 14e89e022ab65e06c1b4ca826b66daa5e69d5ae1 (patch) | |
tree | f9b341508018b2edba4a1817b58430853fe24243 /clang/unittests/Basic/VirtualFileSystemTest.cpp | |
parent | 9508a70adc3a1bc3b559f5e97d029a485f3b3c1b (diff) | |
download | llvm-14e89e022ab65e06c1b4ca826b66daa5e69d5ae1.zip llvm-14e89e022ab65e06c1b4ca826b66daa5e69d5ae1.tar.gz llvm-14e89e022ab65e06c1b4ca826b66daa5e69d5ae1.tar.bz2 |
[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.
llvm-svn: 269133
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 765b403..580e298 100644 --- a/clang/unittests/Basic/VirtualFileSystemTest.cpp +++ b/clang/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"}); } |