test: Add a mode to skip tests that involve arbitrary delays

This can be used as a quick acceptance test for CI workflows.

Signed-off-by: Simon McVittie <smcv@collabora.com>
This commit is contained in:
Simon McVittie
2022-05-04 19:16:01 +01:00
committed by Sam Lantinga
parent 7d2808e30b
commit 40bef98f8b
5 changed files with 30 additions and 1 deletions

View File

@@ -58,6 +58,12 @@ main(int argc, char *argv[])
/* Set the error value for the main thread */
SDL_SetError("No worries");
if (SDL_getenv("SDL_TESTS_QUICK") != NULL) {
SDL_Log("Not running slower tests");
SDL_Quit();
return 0;
}
alive = 1;
thread = SDL_CreateThread(ThreadFunc, NULL, "#1");
if (thread == NULL) {