Don't run the stdio automated tests if libc isn't available

This commit is contained in:
Sam Lantinga 2022-08-10 09:04:17 -07:00
parent e49321cec5
commit aaec244cfd

View file

@ -393,6 +393,7 @@ rwops_testFileWrite(void)
int
rwops_testFPRead(void)
{
#ifdef HAVE_LIBC
FILE *fp;
SDL_RWops *rw;
int result;
@ -428,6 +429,8 @@ rwops_testFPRead(void)
SDLTest_AssertPass("Call to SDL_RWclose() succeeded");
SDLTest_AssertCheck(result == 0, "Verify result value is 0; got: %d", result);
#endif /* HAVE_LIBC */
return TEST_COMPLETED;
}
@ -443,6 +446,7 @@ rwops_testFPRead(void)
int
rwops_testFPWrite(void)
{
#ifdef HAVE_LIBC
FILE *fp;
SDL_RWops *rw;
int result;
@ -478,6 +482,8 @@ rwops_testFPWrite(void)
SDLTest_AssertPass("Call to SDL_RWclose() succeeded");
SDLTest_AssertCheck(result == 0, "Verify result value is 0; got: %d", result);
#endif /* HAVE_LIBC */
return TEST_COMPLETED;
}