X-Git-Url: http://aleph1.co.uk/gitweb/?a=blobdiff_plain;f=direct%2Ftimothy_tests%2Fquick_tests%2Ftest_yaffs_rename_dir_not_empty.c;h=9b15fa5f31aa1206b046a25321d22f8501cb2ead;hb=137f935f6d622bffdef2fece0c5194e85f5174e9;hp=637f758de4db9be49e00056db93036ba069c7f8a;hpb=d223baa0fa5644b48c2626f8d42b05ac45b1daf6;p=yaffs2.git diff --git a/direct/timothy_tests/quick_tests/test_yaffs_rename_dir_not_empty.c b/direct/timothy_tests/quick_tests/test_yaffs_rename_dir_not_empty.c index 637f758..9b15fa5 100644 --- a/direct/timothy_tests/quick_tests/test_yaffs_rename_dir_not_empty.c +++ b/direct/timothy_tests/quick_tests/test_yaffs_rename_dir_not_empty.c @@ -36,6 +36,14 @@ int test_yaffs_rename_dir(void) int test_yaffs_rename_dir_clean(void) { int output = 0; + if (0 == yaffs_access("/yaffs2/new_directory/file",0)) { + output = yaffs_unlink("/yaffs2/new_directory/file"); + if (output < 0) { + print_message("failed to remove file\n",2); + return -1; + } + } + if (0 == yaffs_access(RENAME_DIR_PATH,0)) { output = yaffs_rename(RENAME_DIR_PATH,DIR_PATH); if (output < 0) {