X-Git-Url: https://yaffs.net/gitweb/?a=blobdiff_plain;f=direct%2Ftimothy_tests%2Fquick_tests%2Ftest_yaffs_rmdir_EBUSY.c;h=738a56a74aad897a3068ce922488ee52f3ce40dc;hb=472c70456396a6f2019bfabe83bd292782dbd978;hp=1b7e53eac41b7abf0ca3cfc7febeb45b4312491d;hpb=d3abc5c5da005343e7d78c5c9a51d58af14b3faa;p=yaffs2.git diff --git a/direct/timothy_tests/quick_tests/test_yaffs_rmdir_EBUSY.c b/direct/timothy_tests/quick_tests/test_yaffs_rmdir_EBUSY.c index 1b7e53e..738a56a 100644 --- a/direct/timothy_tests/quick_tests/test_yaffs_rmdir_EBUSY.c +++ b/direct/timothy_tests/quick_tests/test_yaffs_rmdir_EBUSY.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 @@ -19,13 +19,7 @@ int test_yaffs_rmdir_EBUSY(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/"); if (output<0){ error_code=yaffs_get_error(); @@ -45,13 +39,7 @@ int test_yaffs_rmdir_EBUSY(void) int test_yaffs_rmdir_EBUSY_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; }