X-Git-Url: https://git.gag.com/?p=fw%2Fpdclib;a=blobdiff_plain;f=functions%2Fstdio%2Ffopen.c;h=bc9fab4183b42f9b73f2136af778588ac5aa00d4;hp=93e27191aaf9a06d78d9253e3db96406d9080e51;hb=3956a4f15134f471663136d51626523ccff4e9ba;hpb=8f80da097704e9bdfd7a78c27a07f2f92b584846 diff --git a/functions/stdio/fopen.c b/functions/stdio/fopen.c index 93e2719..bc9fab4 100644 --- a/functions/stdio/fopen.c +++ b/functions/stdio/fopen.c @@ -83,16 +83,16 @@ int main( void ) my system is at once less forgiving (segfaults on mode NULL) and more forgiving (accepts undefined modes). */ - remove( "testfile" ); + remove( "testing/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( "testing/testfile", "wq" ) == NULL ); /* Undefined mode */ + TESTCASE_NOREG( fopen( "testing/testfile", "wr" ) == NULL ); /* Undefined mode */ + TESTCASE( fopen( "testing/testfile", "w" ) != NULL ); + remove( "testing/testfile" ); return TEST_RESULTS; }