X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs2.git;a=blobdiff_plain;f=direct%2Ftimothy_tests%2Fquick_tests%2Ftest_yaffs_rmdir_ENOENT.c;fp=direct%2Ftimothy_tests%2Fquick_tests%2Ftest_yaffs_rmdir_ENOENT.c;h=1aec8575de1ec2c128fc52e625dc0ec7c934b3b0;hp=a3e581e374720d56329fb7b8ca20ba88e00a1db6;hb=137f935f6d622bffdef2fece0c5194e85f5174e9;hpb=d223baa0fa5644b48c2626f8d42b05ac45b1daf6 diff --git a/direct/timothy_tests/quick_tests/test_yaffs_rmdir_ENOENT.c b/direct/timothy_tests/quick_tests/test_yaffs_rmdir_ENOENT.c index a3e581e..1aec857 100644 --- a/direct/timothy_tests/quick_tests/test_yaffs_rmdir_ENOENT.c +++ b/direct/timothy_tests/quick_tests/test_yaffs_rmdir_ENOENT.c @@ -19,13 +19,6 @@ int test_yaffs_rmdir_ENOENT(void) int output=0; int error_code =0; - if (0 != yaffs_access(DIR_PATH,0)) { - output = yaffs_mkdir(DIR_PATH,S_IWRITE | S_IREAD); - if (output < 0) { - print_message("failed to create directory\n",2); - return -1; - } - } output = yaffs_rmdir("/yaffs2/non-existing-dir/"); if (output<0){ error_code=yaffs_get_error(); @@ -45,14 +38,6 @@ int test_yaffs_rmdir_ENOENT(void) int test_yaffs_rmdir_ENOENT_clean(void) { int output = 0; - if (0 == yaffs_access(DIR_PATH,0)) { - output = yaffs_rmdir(DIR_PATH); - if (output < 0) { - print_message("failed to remove the directory\n",2); - return -1; - } - } return 1; - }