Fix copyright
[yaffs2.git] / direct / test-framework / timothy_tests / quick_tests / test_yaffs_rename_EEXISTS.c
index 82d29bb012473ac28cb3f66de54a8b941d8f1dee..3044e13d9ee610bab00335fb667b03a74a20f97e 100644 (file)
@@ -1,8 +1,7 @@
 /*
  * YAFFS: Yet another FFS. A NAND-flash specific file system.
  *
- * Copyright (C) 2002-2011 Aleph One Ltd.
- *   for Toby Churchill Ltd and Brightstar Engineering
+ * Copyright (C) 2002-2018 Aleph One Ltd.
  *
  * Created by Timothy Manning <timothy@yaffs.net>
  *
@@ -39,7 +38,7 @@ int test_yaffs_rename_EEXISTS(void)
                        }
                }
        }
-       output= yaffs_open("/yaffs2/test_dir/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;
@@ -63,8 +62,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;