X-Git-Url: https://yaffs.net/gitweb/?a=blobdiff_plain;f=direct%2Ftimothy_tests%2Fquick_tests%2Ftest_yaffs_rename_dir.c;h=70e3db7a495d84d9f9a146cec7ace8a52b24adeb;hb=6648cbf52d6695755941ff8607fd7a0cda542e05;hp=323a0e749787505110de321d96151424ed253053;hpb=43f79e97ed02fe66be94b568da60126bcc351b0c;p=yaffs2.git diff --git a/direct/timothy_tests/quick_tests/test_yaffs_rename_dir.c b/direct/timothy_tests/quick_tests/test_yaffs_rename_dir.c index 323a0e7..70e3db7 100644 --- a/direct/timothy_tests/quick_tests/test_yaffs_rename_dir.c +++ b/direct/timothy_tests/quick_tests/test_yaffs_rename_dir.c @@ -1,7 +1,7 @@ /* * YAFFS: Yet another FFS. A NAND-flash specific file system. * - * Copyright (C) 2002-2010 Aleph One Ltd. + * Copyright (C) 2002-2011 Aleph One Ltd. * for Toby Churchill Ltd and Brightstar Engineering * * Created by Timothy Manning @@ -17,17 +17,16 @@ int test_yaffs_rename_dir(void) { int output=0; - int error_code =0; - if (0 != yaffs_access(FILE_PATH,0)) { - output = test_yaffs_open(); + + if (0 != yaffs_access(DIR_PATH,0)) { + output = yaffs_mkdir(DIR_PATH,S_IREAD|S_IWRITE); if (output < 0) { print_message("failed to create file\n",2); return -1; } } output = yaffs_rename( DIR_PATH , RENAME_DIR_PATH); - printf("output %d\n",output); return output; }