X-Git-Url: http://aleph1.co.uk/gitweb/?a=blobdiff_plain;f=direct%2Ftest-framework%2Ftimothy_tests%2Fquick_tests%2Ftest_yaffs_rename_EEXISTS.c;h=3044e13d9ee610bab00335fb667b03a74a20f97e;hb=ebc54da9e29be1de79d77c72c0d8eb91833c641b;hp=82d29bb012473ac28cb3f66de54a8b941d8f1dee;hpb=a175efe13e14f1be10ed4691cd1b8eee32abc046;p=yaffs2.git diff --git a/direct/test-framework/timothy_tests/quick_tests/test_yaffs_rename_EEXISTS.c b/direct/test-framework/timothy_tests/quick_tests/test_yaffs_rename_EEXISTS.c index 82d29bb..3044e13 100644 --- a/direct/test-framework/timothy_tests/quick_tests/test_yaffs_rename_EEXISTS.c +++ b/direct/test-framework/timothy_tests/quick_tests/test_yaffs_rename_EEXISTS.c @@ -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 * @@ -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;