sdl (master post 3.1 preview) Merge commit 'e4f454091a943345938608570b104400f62fd625'
This commit is contained in:
4
external/sdl/SDL/test/testautomation_timer.c
vendored
4
external/sdl/SDL/test/testautomation_timer.c
vendored
@@ -131,7 +131,7 @@ static int timer_addRemoveTimer(void *arg)
|
||||
/* Set timer with a long delay */
|
||||
id = SDL_AddTimer(10000, timerTestCallback, NULL);
|
||||
SDLTest_AssertPass("Call to SDL_AddTimer(10000,...)");
|
||||
SDLTest_AssertCheck(id > 0, "Check result value, expected: >0, got: %d", id);
|
||||
SDLTest_AssertCheck(id > 0, "Check result value, expected: >0, got: %" SDL_PRIu32, id);
|
||||
|
||||
/* Remove timer again and check that callback was not called */
|
||||
result = SDL_RemoveTimer(id);
|
||||
@@ -153,7 +153,7 @@ static int timer_addRemoveTimer(void *arg)
|
||||
/* Set timer with a short delay */
|
||||
id = SDL_AddTimer(10, timerTestCallback, (void *)¶m);
|
||||
SDLTest_AssertPass("Call to SDL_AddTimer(10, param)");
|
||||
SDLTest_AssertCheck(id > 0, "Check result value, expected: >0, got: %d", id);
|
||||
SDLTest_AssertCheck(id > 0, "Check result value, expected: >0, got: %" SDL_PRIu32, id);
|
||||
|
||||
/* Wait to let timer trigger callback */
|
||||
SDL_Delay(100);
|
||||
|
||||
Reference in New Issue
Block a user