r269133 - [VFS] One more unittest change to fix win10 buildbot

Bruno Cardoso Lopes via cfe-commits cfe-commits at lists.llvm.org
Tue May 10 15:30:01 PDT 2016


Author: bruno
Date: Tue May 10 17:30:01 2016
New Revision: 269133

URL: http://llvm.org/viewvc/llvm-project?rev=269133&view=rev
Log:
[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.

Modified:
    cfe/trunk/unittests/Basic/VirtualFileSystemTest.cpp

Modified: cfe/trunk/unittests/Basic/VirtualFileSystemTest.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/unittests/Basic/VirtualFileSystemTest.cpp?rev=269133&r1=269132&r2=269133&view=diff
==============================================================================
--- cfe/trunk/unittests/Basic/VirtualFileSystemTest.cpp (original)
+++ cfe/trunk/unittests/Basic/VirtualFileSystemTest.cpp Tue May 10 17:30:01 2016
@@ -1085,6 +1085,6 @@ TEST_F(VFSFromYAMLTest, DirectoryIterati
   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"});
 }




More information about the cfe-commits mailing list