yaffs Added some more tests to timothy_tests.
[yaffs2.git] / direct / timothy_tests / quick_tests / test_yaffs_rename_dir_not_empty.c
index 637f758de4db9be49e00056db93036ba069c7f8a..9b15fa5f31aa1206b046a25321d22f8501cb2ead 100644 (file)
@@ -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) {