testfilesystem: Add a '?' to the glob test, for a little more completeness.

main
Ryan C. Gordon 2024-04-04 10:40:11 -04:00
parent e12b8e767a
commit bc94451bed
No known key found for this signature in database
GPG Key ID: FA148B892AB48044
1 changed files with 1 additions and 1 deletions

View File

@ -116,7 +116,7 @@ int main(int argc, char *argv[])
SDL_LogError(SDL_LOG_CATEGORY_APPLICATION, "Base path enumeration failed!"); SDL_LogError(SDL_LOG_CATEGORY_APPLICATION, "Base path enumeration failed!");
} }
globlist = SDL_GlobDirectory(base_path, "*/test*/Test*", SDL_GLOB_CASEINSENSITIVE, NULL); globlist = SDL_GlobDirectory(base_path, "*/test*/T?st*", SDL_GLOB_CASEINSENSITIVE, NULL);
if (!globlist) { if (!globlist) {
SDL_LogError(SDL_LOG_CATEGORY_APPLICATION, "Base path globbing failed!"); SDL_LogError(SDL_LOG_CATEGORY_APPLICATION, "Base path globbing failed!");
} else { } else {