reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

unittests/Support/VirtualFileSystemTest.cpp
  980   ASSERT_FALSE(Stat.getError()) << Stat.getError() << FS.toString();
  980   ASSERT_FALSE(Stat.getError()) << Stat.getError() << FS.toString();
  981   Stat = FS.status("/.");
  982   ASSERT_FALSE(Stat);
  983   Stat = NormalizedFS.status("/.");
  984   ASSERT_FALSE(Stat.getError()) << Stat.getError() << FS.toString();
  984   ASSERT_FALSE(Stat.getError()) << Stat.getError() << FS.toString();
  985   Stat = FS.status("/a");
  986   ASSERT_FALSE(Stat.getError()) << Stat.getError() << "\n" << FS.toString();
  986   ASSERT_FALSE(Stat.getError()) << Stat.getError() << "\n" << FS.toString();
  987   ASSERT_EQ("/a", Stat->getName());