X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=functions%2Fstdio%2Ffopen.c;h=7c0b81a6f660f47dec76c3bd676cb943c436538e;hb=2612fba05258dfde899375db0aa88e65c337395d;hp=93e27191aaf9a06d78d9253e3db96406d9080e51;hpb=a01e9c5aa2474b757cf52e8c945376e22cb45441;p=fw%2Fpdclib diff --git a/functions/stdio/fopen.c b/functions/stdio/fopen.c index 93e2719..7c0b81a 100644 --- a/functions/stdio/fopen.c +++ b/functions/stdio/fopen.c @@ -83,16 +83,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; }