X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=functions%2Fstdio%2Fsprintf.c;h=887c6fcfa610f86c4f749fc51c63b131503fc83a;hb=2612fba05258dfde899375db0aa88e65c337395d;hp=ca7e2d18e4bcf778ea7ed34b1c91694baf266608;hpb=8783b55f5e11c925ed435fac3985f064a4184e9a;p=fw%2Fpdclib diff --git a/functions/stdio/sprintf.c b/functions/stdio/sprintf.c index ca7e2d1..887c6fc 100644 --- a/functions/stdio/sprintf.c +++ b/functions/stdio/sprintf.c @@ -25,20 +25,17 @@ int sprintf( char * _PDCLIB_restrict s, const char * _PDCLIB_restrict format, .. #endif #ifdef TEST -#include <_PDCLIB_test.h> +#define _PDCLIB_FILEID "stdio/sprintf.c" +#define _PDCLIB_STRINGIO -#include -#include +#include <_PDCLIB_test.h> #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]; -#include "printf_testcases.incl" +#include "printf_testcases.h" return TEST_RESULTS; }