X-Git-Url: https://git.gag.com/?p=fw%2Fpdclib;a=blobdiff_plain;f=functions%2Fstdio%2Fclearerr.c;h=af25029032f1fc4d79ec89654bb4bd690a81592e;hp=810e62d7606d99f79613df9faa97ec520f13819d;hb=f2c41eedc0c43f9ea65c8e0fac0b642cb7a74b68;hpb=a8f367a73f490043c0f0ac21a444d9f251f3e8cc diff --git a/functions/stdio/clearerr.c b/functions/stdio/clearerr.c index 810e62d..af25029 100644 --- a/functions/stdio/clearerr.c +++ b/functions/stdio/clearerr.c @@ -23,8 +23,7 @@ void clearerr( struct _PDCLIB_file_t * stream ) int main( void ) { FILE * fh; - remove( "testing/testfile" ); - TESTCASE( ( fh = fopen( "testing/testfile", "w+" ) ) != NULL ); + TESTCASE( ( fh = tmpfile() ) != NULL ); /* Flags should be clear */ TESTCASE( ! ferror( fh ) ); TESTCASE( ! feof( fh ) ); @@ -46,7 +45,6 @@ int main( void ) TESTCASE( ! ferror( fh ) ); TESTCASE( ! feof( fh ) ); TESTCASE( fclose( fh ) == 0 ); - remove( "testing/testfile" ); return TEST_RESULTS; }