reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
1151 ASSERT_FALSE(Stat.getError()) << Stat.getError() << "\n" << FS.toString(); 1151 ASSERT_FALSE(Stat.getError()) << Stat.getError() << "\n" << FS.toString(); 1152 ASSERT_TRUE(Stat->isDirectory()); 1153 Stat = FS.status("/a/b"); 1154 ASSERT_FALSE(Stat.getError()) << Stat.getError() << "\n" << FS.toString(); 1154 ASSERT_FALSE(Stat.getError()) << Stat.getError() << "\n" << FS.toString(); 1155 ASSERT_TRUE(Stat->isDirectory()); 1156 Stat = FS.status("/a/b/c"); 1157 ASSERT_FALSE(Stat.getError()) << Stat.getError() << "\n" << FS.toString(); 1157 ASSERT_FALSE(Stat.getError()) << Stat.getError() << "\n" << FS.toString(); 1158 ASSERT_EQ(sys::fs::file_type::socket_file, Stat->getType()); 1159 ASSERT_EQ(sys::fs::perms::all_all, Stat->getPermissions());