mirror of
https://github.com/encounter/SDL.git
synced 2025-12-08 13:15:10 +00:00
Getting "(null)" when formatted printing NULL is a valid result
This commit is contained in:
@@ -384,7 +384,7 @@ int platform_testSetErrorInvalidInput(void *arg)
|
|||||||
if (lastError != NULL)
|
if (lastError != NULL)
|
||||||
{
|
{
|
||||||
len = SDL_strlen(lastError);
|
len = SDL_strlen(lastError);
|
||||||
SDLTest_AssertCheck(len == 0,
|
SDLTest_AssertCheck(len == 0 || SDL_strcmp(lastError, "(null)") == 0,
|
||||||
"SDL_GetError(): expected message len 0, was len: %i",
|
"SDL_GetError(): expected message len 0, was len: %i",
|
||||||
(int) len);
|
(int) len);
|
||||||
}
|
}
|
||||||
@@ -404,7 +404,7 @@ int platform_testSetErrorInvalidInput(void *arg)
|
|||||||
if (lastError != NULL)
|
if (lastError != NULL)
|
||||||
{
|
{
|
||||||
len = SDL_strlen(lastError);
|
len = SDL_strlen(lastError);
|
||||||
SDLTest_AssertCheck(len == 0,
|
SDLTest_AssertCheck(len == 0 || SDL_strcmp( lastError, "(null)" ) == 0,
|
||||||
"SDL_GetError(): expected message len 0, was len: %i",
|
"SDL_GetError(): expected message len 0, was len: %i",
|
||||||
(int) len);
|
(int) len);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user