X-Git-Url: https://yaffs.net/gitweb/?a=blobdiff_plain;f=direct%2Ftimothy_tests%2Fquick_tests%2Ftest_yaffs_rename_EEXISTS.c;h=c5e2a261bc10f8b32893c147c4997fa1d00cf608;hb=6648cbf52d6695755941ff8607fd7a0cda542e05;hp=d9d1666a844750688327b65e600399ddf14ebcf2;hpb=f1fdae08ffdfaa5d1a31b9c4303dc317fe95ded4;p=yaffs2.git diff --git a/direct/timothy_tests/quick_tests/test_yaffs_rename_EEXISTS.c b/direct/timothy_tests/quick_tests/test_yaffs_rename_EEXISTS.c index d9d1666..c5e2a26 100644 --- a/direct/timothy_tests/quick_tests/test_yaffs_rename_EEXISTS.c +++ b/direct/timothy_tests/quick_tests/test_yaffs_rename_EEXISTS.c @@ -1,7 +1,7 @@ /* * YAFFS: Yet another FFS. A NAND-flash specific file system. * - * Copyright (C) 2002-2010 Aleph One Ltd. + * Copyright (C) 2002-2011 Aleph One Ltd. * for Toby Churchill Ltd and Brightstar Engineering * * Created by Timothy Manning @@ -60,6 +60,13 @@ int test_yaffs_rename_EEXISTS(void) int test_yaffs_rename_EEXISTS_clean(void) { int output = 0; + if (0 == yaffs_access("/yaffs2/dir2/file",0) ) { + output = yaffs_unlink("/yaffs2/dir2/file"); + if (output < 0) { + print_message("failed to remove the file\n",2); + return -1; + } + } if (0 == yaffs_access(RENAME_PATH,0) && 0 != yaffs_access(DIR_PATH,0)) { output = yaffs_rename(RENAME_PATH,FILE_PATH); if (output < 0) { @@ -67,6 +74,7 @@ int test_yaffs_rename_EEXISTS_clean(void) return -1; } } + return 1; }