| 340 | } |
| 341 | |
| 342 | static void MissingContent_Dirs(void* ctx, const char* path, bool isdir) |
| 343 | { |
| 344 | const char* basename = strrchr(path, '/'); |
| 345 | if (isdir && basename && strlen(basename+1) == 2) |
| 346 | { |
| 347 | dmSys::IterateTree(path, false, false, ctx, MissingContent_File); |
| 348 | } |
| 349 | } |
| 350 | |
| 351 | TEST_F(dmHttpCacheTest, MissingContent) |
| 352 | { |
nothing calls this directly
no test coverage detected