X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstdio%2Ffopen.c;h=7c0b81a6f660f47dec76c3bd676cb943c436538e;hb=33515db12d3cc5e53a8bdea58d2cde299cba2267;hp=bc9fab4183b42f9b73f2136af778588ac5aa00d4;hpb=015e9131c3aa3f39b34612d0d2fce242f6deb7b4;p=pdclib.old diff --git a/functions/stdio/fopen.c b/functions/stdio/fopen.c index bc9fab4..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( "testing/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( "testing/testfile", "wq" ) == NULL ); /* Undefined mode */ - TESTCASE_NOREG( fopen( "testing/testfile", "wr" ) == NULL ); /* Undefined mode */ - TESTCASE( fopen( "testing/testfile", "w" ) != NULL ); - remove( "testing/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; }