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