X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;ds=sidebyside;f=functions%2Fstdio%2Fsetbuf.c;h=46db8e3374c109a92494b705e042635db67347a7;hb=015e9131c3aa3f39b34612d0d2fce242f6deb7b4;hp=a68ea27da8ac01aef06c3a9c4c25510f6f049ee8;hpb=809bf566c6c598ad234ee36d58278eb54bdd8fc6;p=pdclib.old diff --git a/functions/stdio/setbuf.c b/functions/stdio/setbuf.c index a68ea27..46db8e3 100644 --- a/functions/stdio/setbuf.c +++ b/functions/stdio/setbuf.c @@ -32,24 +32,23 @@ int main( void ) { /* TODO: Extend testing once setvbuf() is finished. */ #ifndef REGTEST - char const * const filename = "testfile"; char buffer[ BUFSIZ + 1 ]; FILE * fh; - remove( filename ); + remove( testfile ); /* full buffered */ - TESTCASE( ( fh = fopen( filename, "w" ) ) != NULL ); + TESTCASE( ( fh = fopen( testfile, "w" ) ) != NULL ); setbuf( fh, buffer ); TESTCASE( fh->buffer == buffer ); TESTCASE( fh->bufsize == BUFSIZ ); TESTCASE( ( fh->status & ( _IOFBF | _IONBF | _IOLBF ) ) == _IOFBF ); TESTCASE( fclose( fh ) == 0 ); - TESTCASE( remove( filename ) == 0 ); + TESTCASE( remove( testfile ) == 0 ); /* not buffered */ - TESTCASE( ( fh = fopen( filename, "w" ) ) != NULL ); + TESTCASE( ( fh = fopen( testfile, "w" ) ) != NULL ); setbuf( fh, NULL ); TESTCASE( ( fh->status & ( _IOFBF | _IONBF | _IOLBF ) ) == _IONBF ); TESTCASE( fclose( fh ) == 0 ); - TESTCASE( remove( filename ) == 0 ); + TESTCASE( remove( testfile ) == 0 ); #else puts( " NOTEST setbuf() test driver is PDCLib-specific." ); #endif