X-Git-Url: https://yaffs.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=direct%2Ftimothy_tests%2Fquick_tests%2Ftest_yaffs_rename_file_to_dir.c;h=efc87d0f2405c031e10a5f4e284b4d1618632405;hb=d7388fb75a13610d14d0afc397f826bd44c972e1;hp=182fb0d9dec97dfefa675cccc6bfb479dea6803c;hpb=23ad7f93a1c1c93f541835a002121dfa4e307289;p=yaffs2.git diff --git a/direct/timothy_tests/quick_tests/test_yaffs_rename_file_to_dir.c b/direct/timothy_tests/quick_tests/test_yaffs_rename_file_to_dir.c index 182fb0d..efc87d0 100644 --- a/direct/timothy_tests/quick_tests/test_yaffs_rename_file_to_dir.c +++ b/direct/timothy_tests/quick_tests/test_yaffs_rename_file_to_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 @@ -45,12 +45,18 @@ int test_yaffs_rename_file_to_dir(void) int test_yaffs_rename_file_to_dir_clean(void) { int output = 0; + test_yaffs_open(); if (0 == yaffs_access(RENAME_DIR_PATH,0)) { output = yaffs_unlink(RENAME_DIR_PATH); if (output < 0) { print_message("failed to unlink the file\n",2); return -1; } + output = test_yaffs_open(); + if (output < 0) { + print_message("failed to open a new\n",2); + return -1; + } } return 1;