r249395 - BasicTests: Suppress InMemoryFileSystemTest.WindowsPath on win32 while investigating.
NAKAMURA Takumi via cfe-commits
cfe-commits at lists.llvm.org
Tue Oct 6 15:56:59 PDT 2015
On Wed, Oct 7, 2015 at 12:29 AM Rafael EspĂndola <rafael.espindola at gmail.com>
wrote:
> What was the error?
>
http://lab.llvm.org:8011/builders/clang-x64-ninja-win7/builds/5683
http://bb.pgr.jp/builders/ninja-clang-i686-msc18-R/builds/3409
http://bb.pgr.jp/builders/ninja-clang-x64-mingw64-RA/builds/8047
I guessed behavior difference in sys::Path iterator between unix and win32,
but not sure.
> On 6 October 2015 at 08:16, NAKAMURA Takumi via cfe-commits
> <cfe-commits at lists.llvm.org> wrote:
> > Author: chapuni
> > Date: Tue Oct 6 07:16:27 2015
> > New Revision: 249395
> >
> > URL: http://llvm.org/viewvc/llvm-project?rev=249395&view=rev
> > Log:
> > BasicTests: Suppress InMemoryFileSystemTest.WindowsPath on win32 while
> investigating.
> >
> > 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=249395&r1=249394&r2=249395&view=diff
> >
> ==============================================================================
> > --- cfe/trunk/unittests/Basic/VirtualFileSystemTest.cpp (original)
> > +++ cfe/trunk/unittests/Basic/VirtualFileSystemTest.cpp Tue Oct 6
> 07:16:27 2015
> > @@ -536,7 +536,9 @@ TEST_F(InMemoryFileSystemTest, IsEmpty)
> > TEST_F(InMemoryFileSystemTest, WindowsPath) {
> > FS.addFile("c:/windows/system128/foo.cpp", 0,
> MemoryBuffer::getMemBuffer(""));
> > auto Stat = FS.status("c:");
> > +#if !defined(_WIN32)
> > ASSERT_FALSE(Stat.getError()) << Stat.getError() << FS.toString();
> > +#endif
> > Stat = FS.status("c:/windows/system128/foo.cpp");
> > ASSERT_FALSE(Stat.getError()) << Stat.getError() << FS.toString();
> > FS.addFile("d:/windows/foo.cpp", 0, MemoryBuffer::getMemBuffer(""));
> >
> >
> > _______________________________________________
> > cfe-commits mailing list
> > cfe-commits at lists.llvm.org
> > http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20151006/ecda0960/attachment-0001.html>
More information about the cfe-commits
mailing list