X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstdio%2Fvprintf.c;h=55c37e4dfab8c49950a0c99a45f09c96d6a8a180;hb=eabb2c002a72fcb019ce81a86ba024bd48aceda3;hp=a02c625670582f208e5d6b1a2092818bf4da06e5;hpb=92177644f19b596c593293cb20c4f6677186f3b6;p=pdclib diff --git a/functions/stdio/vprintf.c b/functions/stdio/vprintf.c index a02c625..55c37e4 100644 --- a/functions/stdio/vprintf.c +++ b/functions/stdio/vprintf.c @@ -19,11 +19,13 @@ int vprintf( const char * _PDCLIB_restrict format, _PDCLIB_va_list arg ) #endif #ifdef TEST +#define _PDCLIB_FILEID "stdio/vprintf.c" +#define FPRINTF_FUNCTION #include #include #include <_PDCLIB_test.h> -static int testprintf( FILE * stream, size_t n, const char * format, ... ) +static int testprintf( FILE * stream, const char * format, ... ) { int i; va_list arg; @@ -33,14 +35,12 @@ static int testprintf( FILE * stream, size_t n, const char * format, ... ) return i; } -#define TESTCASE_SPRINTF( x ) - int main( void ) { - FILE * buffer; - TESTCASE( ( buffer = freopen( testfile, "wb", stdout ) ) != NULL ); + FILE * target; + TESTCASE( ( target = freopen( testfile, "wb+", stdout ) ) != NULL ); #include "printf_testcases.incl" - TESTCASE( fclose( buffer ) == 0 ); + TESTCASE( fclose( target ) == 0 ); #include "fprintf_reftest.incl" TESTCASE( remove( testfile ) == 0 ); return TEST_RESULTS;