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

References

unittests/Support/VirtualFileSystemTest.cpp
 1133   ASSERT_FALSE(Stat.getError()) << Stat.getError() << "\n" << FS.toString();
 1133   ASSERT_FALSE(Stat.getError()) << Stat.getError() << "\n" << FS.toString();
 1134   ASSERT_TRUE(Stat->isDirectory());
 1135   ASSERT_EQ(0xDABBAD00, Stat->getGroup());
 1136   Stat = FS.status("/a/b");
 1137   ASSERT_TRUE(Stat->isDirectory());
 1138   ASSERT_FALSE(Stat.getError()) << Stat.getError() << "\n" << FS.toString();
 1138   ASSERT_FALSE(Stat.getError()) << Stat.getError() << "\n" << FS.toString();
 1139   ASSERT_EQ(0xDABBAD00, Stat->getGroup());
 1140   Stat = FS.status("/a/b/c");
 1141   ASSERT_FALSE(Stat.getError()) << Stat.getError() << "\n" << FS.toString();
 1141   ASSERT_FALSE(Stat.getError()) << Stat.getError() << "\n" << FS.toString();
 1142   ASSERT_TRUE(Stat->isRegularFile());
 1143   ASSERT_EQ(sys::fs::perms::all_all, Stat->getPermissions());
 1144   ASSERT_EQ(0xDABBAD00, Stat->getGroup());