timothy-tests: Change mountpoint names to match test framework
[yaffs2.git] / direct / test-framework / timothy_tests / quick_tests / test_yaffs_rename_EEXISTS.c
index c5e2a261bc10f8b32893c147c4997fa1d00cf608..f642b7d2769feb47843595eea77d637e0ff10121 100644 (file)
@@ -18,7 +18,10 @@ int test_yaffs_rename_EEXISTS(void)
 {
        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) {
@@ -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(YAFFS_MOUNT_POINT "/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;
@@ -60,8 +63,8 @@ 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 (0 ==  yaffs_access(YAFFS_MOUNT_POINT "/dir2/file",0) ) {
+               output = yaffs_unlink(YAFFS_MOUNT_POINT "/dir2/file");
                if (output < 0) {
                        print_message("failed to remove the file\n",2);
                        return -1;