X-Git-Url: https://pd.if.org/git/?p=pdclib;a=blobdiff_plain;f=functions%2Fstdio%2Fsetvbuf.c;h=ecb0be5e20f7a4063100f2ac8456e747f92f2dbd;hp=2c333382be537002c621b6299ff2fb14ae37545a;hb=6c8c4f80e32177f27f89b4aff3b7568a7afd4041;hpb=33ed95661442997b6fcafae16d9e0ab6871b058a diff --git a/functions/stdio/setvbuf.c b/functions/stdio/setvbuf.c index 2c33338..ecb0be5 100644 --- a/functions/stdio/setvbuf.c +++ b/functions/stdio/setvbuf.c @@ -82,29 +82,25 @@ int main( void ) #ifndef REGTEST char buffer[ BUFFERSIZE ]; FILE * fh; - remove( testfile ); /* full buffered, user-supplied buffer */ - TESTCASE( ( fh = fopen( testfile, "w" ) ) != NULL ); + TESTCASE( ( fh = tmpfile() ) != NULL ); TESTCASE( setvbuf( fh, buffer, _IOFBF, BUFFERSIZE ) == 0 ); TESTCASE( fh->buffer == buffer ); TESTCASE( fh->bufsize == BUFFERSIZE ); TESTCASE( ( fh->status & ( _IOFBF | _IONBF | _IOLBF ) ) == _IOFBF ); TESTCASE( fclose( fh ) == 0 ); - TESTCASE( remove( testfile ) == 0 ); /* line buffered, lib-supplied buffer */ - TESTCASE( ( fh = fopen( testfile, "w" ) ) != NULL ); + TESTCASE( ( fh = tmpfile() ) != NULL ); TESTCASE( setvbuf( fh, NULL, _IOLBF, BUFFERSIZE ) == 0 ); TESTCASE( fh->buffer != NULL ); TESTCASE( fh->bufsize == BUFFERSIZE ); TESTCASE( ( fh->status & ( _IOFBF | _IONBF | _IOLBF ) ) == _IOLBF ); TESTCASE( fclose( fh ) == 0 ); - TESTCASE( remove( testfile ) == 0 ); /* not buffered, user-supplied buffer */ - TESTCASE( ( fh = fopen( testfile, "w" ) ) != NULL ); + TESTCASE( ( fh = tmpfile() ) != NULL ); TESTCASE( setvbuf( fh, buffer, _IONBF, BUFFERSIZE ) == 0 ); TESTCASE( ( fh->status & ( _IOFBF | _IONBF | _IOLBF ) ) == _IONBF ); TESTCASE( fclose( fh ) == 0 ); - TESTCASE( remove( testfile ) == 0 ); #else puts( " NOTEST setvbuf() test driver is PDCLib-specific." ); #endif