Don't run the stdio automated tests if libc isn't available
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
diff --git a/test/testautomation_rwops.c b/test/testautomation_rwops.c
index a7d3c32..44e0086 100644
--- a/test/testautomation_rwops.c
+++ b/test/testautomation_rwops.c
@@ -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;
}