fixed up all the quick tests
[yaffs2.git] / direct / test-framework / timothy_tests / quick_tests / test_yaffs_access.c
index 1e516bc60d40525559bf488d1e449048c614e352..23b8c035f4e227c3e90f971b517e7838757b7898 100644 (file)
 
 int test_yaffs_access(void)
 {
-               return yaffs_access(FILE_PATH,0);
+
+       if (-1==yaffs_close(yaffs_open(FILE_PATH,O_CREAT | O_RDWR, FILE_MODE))){
+               print_message("failed to create file\n",1);
+               return -1;
+       }
+       return yaffs_access(FILE_PATH,0);
 }
 
 int test_yaffs_access_clean(void)