yaffs Added some more tests to timothy_tests.
[yaffs2.git] / direct / timothy_tests / quick_tests / test_yaffs_rename_dir.c
index 323a0e749787505110de321d96151424ed253053..d6eb84c7515cf02a5df1122642de72e9fdf9e0f3 100644 (file)
 int test_yaffs_rename_dir(void)
 {
        int output=0;
-       int error_code =0;
 
-       if (0 !=  yaffs_access(FILE_PATH,0)) {
-               output = test_yaffs_open();
+
+       if (0 !=  yaffs_access(DIR_PATH,0)) {
+               output = yaffs_mkdir(DIR_PATH,S_IREAD|S_IWRITE);
                if (output < 0) {
                        print_message("failed to create file\n",2);
                        return -1;
                }
        }
        output = yaffs_rename( DIR_PATH , RENAME_DIR_PATH);
-       printf("output %d\n",output);
        return output;  
 }