// S : tags stdio libc c // S : expect --result valid // S : cc -o test.bc -D_PDCLIB_BUILD -DTEST $file // S : verify -o nofail:malloc -o nofail:vfs test.bc #include #include #include #include #define _PDCLIB_FILEID "stdio/fprintf.c" #define _PDCLIB_FILEIO #include "_PDCLIB_test.h" #define testprintf( stream, ... ) fprintf( stream, __VA_ARGS__ ) int main( void ) { FILE * target; TESTCASE( ( target = tmpfile() ) != NULL ); #include "printf_testcases.h" TESTCASE( fclose( target ) == 0 ); return TEST_RESULTS; }