X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstdio%2Fvfprintf.c;h=2b216db9ff71b19dec53384c3ab92d2f5b762bbd;hb=5b71d3a47fc12250b66dd6caf046f0a3d9ac9973;hp=6ff56ff905a3adb538816dc85b0ac39af55ed3b6;hpb=dce3890032b066679d21ef55d00b505f90176a8b;p=pdclib.old diff --git a/functions/stdio/vfprintf.c b/functions/stdio/vfprintf.c index 6ff56ff..2b216db 100644 --- a/functions/stdio/vfprintf.c +++ b/functions/stdio/vfprintf.c @@ -64,13 +64,16 @@ static int testprintf( FILE * stream, size_t n, const char * format, ... ) return i; } +#define TESTCASE_SPRINTF( x ) + int main( void ) { FILE * buffer; - TESTCASE( ( buffer = fopen( "testfile", "wb" ) ) != NULL ); + TESTCASE( ( buffer = fopen( testfile, "wb" ) ) != NULL ); #include "printf_testcases.incl" TESTCASE( fclose( buffer ) == 0 ); #include "fprintf_reftest.incl" + TESTCASE( remove( testfile ) == 0 ); return TEST_RESULTS; }