]> pd.if.org Git - pdclib/commitdiff
Disabled regtests for functionality internal to PDCLib.
authorsolar <unknown>
Thu, 1 Jun 2006 06:29:06 +0000 (06:29 +0000)
committersolar <unknown>
Thu, 1 Jun 2006 06:29:06 +0000 (06:29 +0000)
functions/stdio/remove.c
functions/stdio/rename.c
functions/stdlib/malloc.c

index 0318c21d7cbeef2cf81049db8658447dc46d11f7..510a4e283c76828030c6b6e15a0be0e7f91f8e77 100644 (file)
@@ -24,7 +24,11 @@ int remove( const char * filename )
 
 int main( void )
 {
+#ifndef REGTEST
     TESTCASE( NO_TESTDRIVER );
+#else
+    puts( "No testing of remove() - test driver does not know internals of system function." );
+#endif
     return TEST_RESULTS;
 }
 
index d21e2a2e6f58e525b92df3d67b5734e03d362d8a..8e2d3e0bb0306daa0a541208e030a95cae38e8b0 100644 (file)
@@ -24,7 +24,11 @@ int rename( const char * old, const char * new )
 
 int main( void )
 {
+#ifndef REGTEST
     TESTCASE( NO_TESTDRIVER );
+#else
+    puts( "No testing of rename() - test driver does not know internals of system function." );
+#endif
     return TEST_RESULTS;
 }
 
index 3dd0ac889ddbb12caa1f9ba7d4b74d45e9f6d06f..2286d0d3c00273c7717faddf802c1652cf60094c 100644 (file)
@@ -242,7 +242,7 @@ int main( void )
     printf( "End of malloc() testing.\n" );
     }
 #else
-    printf( "No testing of malloc() - test driver does not know internals of system malloc().\n" );
+    puts( "No testing of malloc() - test driver does not know internals of system function." );
 #endif
     return TEST_RESULTS;
 }