X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstdio%2Ffopen.c;h=c69a60541e3f57059e778dbbd3283408cc2f497e;hb=b1fc26afebd4d557ff89a44bc21767a8704c3809;hp=1c47c17a974636e3acdb3af3fbe8ec28ac17cdfb;hpb=8024ab6eb8c841b330458354788d7f3a86bee7dd;p=pdclib diff --git a/functions/stdio/fopen.c b/functions/stdio/fopen.c index 1c47c17..c69a605 100644 --- a/functions/stdio/fopen.c +++ b/functions/stdio/fopen.c @@ -1,5 +1,3 @@ -/* $Id$ */ - /* fopen( const char *, const char * ) This file is part of the Public Domain C Library (PDCLib). @@ -64,7 +62,7 @@ struct _PDCLIB_file_t * fopen( const char * _PDCLIB_restrict filename, const cha buffered if and only if it can be determined not to refer to an interactive device." */ - rc->status |= _PDCLIB_LIBBUFFER | _IOLBF; + rc->status |= _IOLBF; /* TODO: Setting mbstate */ /* Adding to list of open files */ rc->next = _PDCLIB_filelist; @@ -83,16 +81,18 @@ int main( void ) my system is at once less forgiving (segfaults on mode NULL) and more forgiving (accepts undefined modes). */ - remove( "testfile" ); + FILE * fh; + remove( testfile ); TESTCASE_NOREG( fopen( NULL, NULL ) == NULL ); TESTCASE( fopen( NULL, "w" ) == NULL ); TESTCASE_NOREG( fopen( "", NULL ) == NULL ); TESTCASE( fopen( "", "w" ) == NULL ); TESTCASE( fopen( "foo", "" ) == NULL ); - TESTCASE_NOREG( fopen( "testfile", "wq" ) == NULL ); /* Undefined mode */ - TESTCASE_NOREG( fopen( "testfile", "wr" ) == NULL ); /* Undefined mode */ - TESTCASE( fopen( "testfile", "w" ) != NULL ); - remove( "testfile" ); + TESTCASE_NOREG( fopen( testfile, "wq" ) == NULL ); /* Undefined mode */ + TESTCASE_NOREG( fopen( testfile, "wr" ) == NULL ); /* Undefined mode */ + TESTCASE( ( fh = fopen( testfile, "w" ) ) != NULL ); + TESTCASE( fclose( fh ) == 0 ); + TESTCASE( remove( testfile ) == 0 ); return TEST_RESULTS; }