X-Git-Url: https://yaffs.net/gitweb/?a=blobdiff_plain;f=direct%2Ftimothy_tests%2Fquick_tests%2Ftest_yaffs_rename_dir_to_file.c;h=b191dbb9d18839ec4febbcb0fa830e733ebfd9cb;hb=472c70456396a6f2019bfabe83bd292782dbd978;hp=d87b8ab6adebeea7f7d60201c1b60d65790fcfbf;hpb=23ad7f93a1c1c93f541835a002121dfa4e307289;p=yaffs2.git diff --git a/direct/timothy_tests/quick_tests/test_yaffs_rename_dir_to_file.c b/direct/timothy_tests/quick_tests/test_yaffs_rename_dir_to_file.c index d87b8ab..b191dbb 100644 --- a/direct/timothy_tests/quick_tests/test_yaffs_rename_dir_to_file.c +++ b/direct/timothy_tests/quick_tests/test_yaffs_rename_dir_to_file.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 @@ -21,7 +21,14 @@ int test_yaffs_rename_dir_to_file(void) if (0 != yaffs_access(DIR_PATH,0)) { output= yaffs_mkdir(DIR_PATH,(S_IREAD | S_IWRITE)); if (output<0) { - print_message("failed to create directory\n",2); + print_message("failed to remove directory\n",2); + return -1; + } + } + if (0 != yaffs_access(RENAME_PATH,0)) { + output= yaffs_mkdir(RENAME_PATH,(S_IREAD | S_IWRITE)); + if (output<0) { + print_message("failed to remove file\n",2); return -1; } }