X-Git-Url: http://www.aleph1.co.uk/gitweb/?a=blobdiff_plain;f=direct%2Ftimothy_tests%2Fquick_tests%2Ftest_yaffs_open_file_ENOENT.c;fp=direct%2Ftimothy_tests%2Fquick_tests%2Ftest_yaffs_open_file_ENOENT.c;h=0000000000000000000000000000000000000000;hb=fa6335ddf55329c1ba1c50c68080a559461151cc;hp=ed57e2d6f8432c99d37d6e274ab67cd0e7c2488f;hpb=c118b37070fa47650ca61c8c740da7461450d139;p=yaffs2.git diff --git a/direct/timothy_tests/quick_tests/test_yaffs_open_file_ENOENT.c b/direct/timothy_tests/quick_tests/test_yaffs_open_file_ENOENT.c deleted file mode 100644 index ed57e2d..0000000 --- a/direct/timothy_tests/quick_tests/test_yaffs_open_file_ENOENT.c +++ /dev/null @@ -1,24 +0,0 @@ -#include "test_yaffs_open_file_ENOENT.h" - -static int handle=0; -int test_yaffs_open_file_ENOENT(void){ - int output=0; - int error_code=0; - /*printf("path %s\n",path); */ - handle=yaffs_open("/yaffs2/non_existant_file", O_TRUNC| O_RDWR,FILE_MODE ); - if (handle==-1){ - error_code=yaffs_get_error(); - if (error_code==ENOENT){ - return 1; - } - } - else if (output >=0){ - printf("non existant file opened.(which is a bad thing)\n"); - return -1; - } - -} -int test_yaffs_open_file_ENOENT_clean(void){ - return 1; -} -