X-Git-Url: https://pd.if.org/git/?p=pdclib;a=blobdiff_plain;f=functions%2Fstdio%2Fsetvbuf.c;h=2c333382be537002c621b6299ff2fb14ae37545a;hp=b9d97a01d0cead30eb2abbc4e0f4a90b3f4af1a6;hb=55cf35957bf8dec0a489ba758c02c83303a5eb50;hpb=4340db942a3f1dc39724c1f05264d38586bc062a diff --git a/functions/stdio/setvbuf.c b/functions/stdio/setvbuf.c index b9d97a0..2c33338 100644 --- a/functions/stdio/setvbuf.c +++ b/functions/stdio/setvbuf.c @@ -80,32 +80,31 @@ int setvbuf( struct _PDCLIB_file_t * _PDCLIB_restrict stream, char * _PDCLIB_res int main( void ) { #ifndef REGTEST - char const * const filename = "testfile"; char buffer[ BUFFERSIZE ]; FILE * fh; - remove( filename ); + remove( testfile ); /* full buffered, user-supplied buffer */ - TESTCASE( ( fh = fopen( filename, "w" ) ) != NULL ); + TESTCASE( ( fh = fopen( testfile, "w" ) ) != 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( filename ) == 0 ); + TESTCASE( remove( testfile ) == 0 ); /* line buffered, lib-supplied buffer */ - TESTCASE( ( fh = fopen( filename, "w" ) ) != NULL ); + TESTCASE( ( fh = fopen( testfile, "w" ) ) != 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( filename ) == 0 ); + TESTCASE( remove( testfile ) == 0 ); /* not buffered, user-supplied buffer */ - TESTCASE( ( fh = fopen( filename, "w" ) ) != NULL ); + TESTCASE( ( fh = fopen( testfile, "w" ) ) != NULL ); TESTCASE( setvbuf( fh, buffer, _IONBF, BUFFERSIZE ) == 0 ); TESTCASE( ( fh->status & ( _IOFBF | _IONBF | _IOLBF ) ) == _IONBF ); TESTCASE( fclose( fh ) == 0 ); - TESTCASE( remove( filename ) == 0 ); + TESTCASE( remove( testfile ) == 0 ); #else puts( " NOTEST setvbuf() test driver is PDCLib-specific." ); #endif