X-Git-Url: http://www.aleph1.co.uk/gitweb/?a=blobdiff_plain;f=direct%2Ftimothy_tests%2Fquick_tests%2Ftest_yaffs_rename_dir_to_file.c;h=cea18f0175ca5c9790ec4255e924123d235e9bad;hb=fb619fcd9415e8a5b9c8bdad87fff07a1b2579ab;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..cea18f0 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 @@ -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; } }