yaffs direct tests: Modify some tests to check properly
[yaffs2.git] / direct / timothy_tests / quick_tests / test_yaffs_fchmod_EBADF.c
index 159f135e7f82f0ab899f9d27bbfc687ac1881d5e..0a521b8b03cf63c89b189e8fc878363ae628fd1e 100644 (file)
 
 #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;
 
 }