Procházet zdrojové kódy

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

Sam Lantinga před 2 roky
rodič
revize
aaec244cfd
1 změnil soubory, kde provedl 6 přidání a 0 odebrání
  1. 6 0
      test/testautomation_rwops.c

+ 6 - 0
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;
 }