Fix warning: redefinition of typedef 'SDLTest_TestSuiteRunner'

This commit is contained in:
Petar Popovic 2024-09-09 00:08:06 +02:00 committed by Sam Lantinga
parent 7df1caba7c
commit aa6a0be7a8
1 changed files with 2 additions and 2 deletions

View File

@ -47,7 +47,7 @@
/* Final result message format */ /* Final result message format */
#define SDLTEST_FINAL_RESULT_FORMAT COLOR_YELLOW ">>> %s '%s':" COLOR_END " %s\n" #define SDLTEST_FINAL_RESULT_FORMAT COLOR_YELLOW ">>> %s '%s':" COLOR_END " %s\n"
typedef struct SDLTest_TestSuiteRunner { struct SDLTest_TestSuiteRunner {
struct struct
{ {
SDLTest_TestSuiteReference **testSuites; SDLTest_TestSuiteReference **testSuites;
@ -59,7 +59,7 @@ typedef struct SDLTest_TestSuiteRunner {
} user; } user;
SDLTest_ArgumentParser argparser; SDLTest_ArgumentParser argparser;
} SDLTest_TestSuiteRunner; };
/* ! Timeout for single test case execution */ /* ! Timeout for single test case execution */
static Uint32 SDLTest_TestCaseTimeout = 3600;; static Uint32 SDLTest_TestCaseTimeout = 3600;;