timothy-tests: Change mountpoint names to match test framework
[yaffs2.git] / direct / test-framework / timothy_tests / quick_tests / test_yaffs_rename_EROFS.c
index 768a2d6c9ae7535ac98d8b7195d60f157e88d550..2a5765f12bcab556c65d9830bd64e2f000a82e52 100644 (file)
  */
 
 #include "test_yaffs_rename_EROFS.h"
-
+#include "test_yaffs_open.h"
 
 int test_yaffs_rename_EROFS(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;
+       }
        EROFS_setup();
        output = yaffs_rename(FILE_PATH , RENAME_PATH);
        if (output<0){ 
@@ -38,8 +42,8 @@ int test_yaffs_rename_EROFS(void)
 int test_yaffs_rename_EROFS_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;