fixed up all the quick tests
[yaffs2.git] / direct / test-framework / timothy_tests / quick_tests / test_yaffs_rename_EEXISTS.c
index c5e2a261bc10f8b32893c147c4997fa1d00cf608..82d29bb012473ac28cb3f66de54a8b941d8f1dee 100644 (file)
@@ -18,7 +18,10 @@ int test_yaffs_rename_EEXISTS(void)
 {
        int output=0;
        int error_code =0;
 {
        int output=0;
        int error_code =0;
-
+       if (yaffs_close(yaffs_open(FILE_PATH,O_CREAT | O_RDWR, FILE_MODE))==-1){
+               print_message("failed to create file\n",1);
+               return -1;
+       }
        if (0 !=  yaffs_access(DIR_PATH,0)) {
                output = yaffs_mkdir(DIR_PATH,S_IWRITE | S_IREAD);
                if (output < 0) {
        if (0 !=  yaffs_access(DIR_PATH,0)) {
                output = yaffs_mkdir(DIR_PATH,S_IWRITE | S_IREAD);
                if (output < 0) {
@@ -36,7 +39,7 @@ int test_yaffs_rename_EEXISTS(void)
                        }
                }
        }
                        }
                }
        }
-       output= yaffs_open("/yaffs2/dir2/file",O_CREAT | O_RDWR, FILE_MODE);
+       output= yaffs_open("/yaffs2/test_dir/dir2/file",O_CREAT | O_RDWR, FILE_MODE);
        if (output<0){
                print_message("failed to open file in the second directory\n",2);
                return -1;
        if (output<0){
                print_message("failed to open file in the second directory\n",2);
                return -1;