]> pd.if.org Git - pdclib/blobdiff - functions/stdio/sprintf.c
*Much* better.
[pdclib] / functions / stdio / sprintf.c
index ca7e2d18e4bcf778ea7ed34b1c91694baf266608..1c1d666b44c1a5805aaa149127e8ecdde20026c0 100644 (file)
@@ -25,6 +25,8 @@ int sprintf( char * _PDCLIB_restrict s, const char * _PDCLIB_restrict format, ..
 #endif
 
 #ifdef TEST
+#define _PDCLIB_FILEID "stdio/sprintf.c"
+#define SPRINTF_FUNCTION
 #include <_PDCLIB_test.h>
 
 #include <string.h>
@@ -32,9 +34,6 @@ int sprintf( char * _PDCLIB_restrict s, const char * _PDCLIB_restrict format, ..
 
 #define testprintf( s, format, ... ) sprintf( s, format, __VA_ARGS__ )
 
-#define TESTCASE_SPRINTF( x ) if ( strcmp( target, x ) == 0 ) {} \
-                              else { TEST_RESULTS += 1; printf( "FAILED: " __FILE__ ", line %d - \"%s\" != %s\n", __LINE__, target, #x ); }
-
 int main( void )
 {
     char target[100];