From bc94451bed030a9885789ba19ea715ed3c78f4b8 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Thu, 4 Apr 2024 10:40:11 -0400 Subject: [PATCH] testfilesystem: Add a '?' to the glob test, for a little more completeness. --- test/testfilesystem.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/testfilesystem.c b/test/testfilesystem.c index 99fb0951f..dd4cf017b 100644 --- a/test/testfilesystem.c +++ b/test/testfilesystem.c @@ -116,7 +116,7 @@ int main(int argc, char *argv[]) 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) { SDL_LogError(SDL_LOG_CATEGORY_APPLICATION, "Base path globbing failed!"); } else {