X-Git-Url: https://pd.if.org/git/?p=pdclib;a=blobdiff_plain;f=functions%2Fstdio%2Fsetbuf.c;h=46db8e3374c109a92494b705e042635db67347a7;hp=d51582f975c3c8b13afb3d0c066d8849d369a294;hb=55cf35957bf8dec0a489ba758c02c83303a5eb50;hpb=b08f4b52b1cd1f7a9553c0f357a7c90859fa3e73 diff --git a/functions/stdio/setbuf.c b/functions/stdio/setbuf.c index d51582f..46db8e3 100644 --- a/functions/stdio/setbuf.c +++ b/functions/stdio/setbuf.c @@ -10,9 +10,8 @@ #ifndef REGTEST -void setbuf( FILE * _PDCLIB_restrict stream, char * _PDCLIB_restrict buf ) +void setbuf( struct _PDCLIB_file_t * _PDCLIB_restrict stream, char * _PDCLIB_restrict buf ) { - /* TODO: Only allowed on a "virgin" stream; add check. */ if ( buf == NULL ) { setvbuf( stream, buf, _IONBF, BUFSIZ ); @@ -27,10 +26,32 @@ void setbuf( FILE * _PDCLIB_restrict stream, char * _PDCLIB_restrict buf ) #ifdef TEST #include <_PDCLIB_test.h> +#include int main( void ) { - TESTCASE( NO_TESTDRIVER ); + /* TODO: Extend testing once setvbuf() is finished. */ +#ifndef REGTEST + char buffer[ BUFSIZ + 1 ]; + FILE * fh; + remove( testfile ); + /* full buffered */ + 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( testfile ) == 0 ); + /* not buffered */ + TESTCASE( ( fh = fopen( testfile, "w" ) ) != NULL ); + setbuf( fh, NULL ); + TESTCASE( ( fh->status & ( _IOFBF | _IONBF | _IOLBF ) ) == _IONBF ); + TESTCASE( fclose( fh ) == 0 ); + TESTCASE( remove( testfile ) == 0 ); +#else + puts( " NOTEST setbuf() test driver is PDCLib-specific." ); +#endif return TEST_RESULTS; }