X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs2.git;a=blobdiff_plain;f=direct%2Ftimothy_tests%2Fquick_tests%2Ftest_yaffs_fchmod_EBADF.c;h=0a521b8b03cf63c89b189e8fc878363ae628fd1e;hp=159f135e7f82f0ab899f9d27bbfc687ac1881d5e;hb=050a7702e4c058234102772f12846e7a878ca769;hpb=105583dbe67bb27204f5b9cfc3692393b38831d2;ds=sidebyside diff --git a/direct/timothy_tests/quick_tests/test_yaffs_fchmod_EBADF.c b/direct/timothy_tests/quick_tests/test_yaffs_fchmod_EBADF.c index 159f135..0a521b8 100644 --- a/direct/timothy_tests/quick_tests/test_yaffs_fchmod_EBADF.c +++ b/direct/timothy_tests/quick_tests/test_yaffs_fchmod_EBADF.c @@ -13,19 +13,11 @@ #include "test_yaffs_fchmod_EBADF.h" -static int handle = -1; int test_yaffs_fchmod_EBADF(void) { int error = 0; int output = 0; - - handle = test_yaffs_open(); - - if (handle < 0){ - print_message("failed to open file\n",2); - return -1; - } output = yaffs_fchmod(-1,S_IREAD||S_IWRITE); @@ -47,10 +39,6 @@ int test_yaffs_fchmod_EBADF(void) int test_yaffs_fchmod_EBADF_clean(void) { - if (handle >= 0) { - printf("handle %d\n",handle); - return yaffs_close(handle); - } return 1; }