X-Git-Url: https://yaffs.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=direct%2Ftimothy_tests%2Fquick_tests%2Ftest_yaffs_lseek_EINVAL.c;h=b03914e87279808b9fe0212320c099195de99b59;hb=4f90d524e3c666c53ae36ad2911e00e5b3741cca;hp=173e1b5d04ed8169cedf11e5ad12c0d736b252b5;hpb=22f31a41cbb9a08e67204279fb3b37e400309f1c;p=yaffs2.git diff --git a/direct/timothy_tests/quick_tests/test_yaffs_lseek_EINVAL.c b/direct/timothy_tests/quick_tests/test_yaffs_lseek_EINVAL.c index 173e1b5..b03914e 100644 --- a/direct/timothy_tests/quick_tests/test_yaffs_lseek_EINVAL.c +++ b/direct/timothy_tests/quick_tests/test_yaffs_lseek_EINVAL.c @@ -13,12 +13,20 @@ #include "test_yaffs_lseek_EINVAL.h" -int handle=0; +int handle=-1; int test_yaffs_lseek_EINVAL(void){ handle=test_yaffs_open(); int error_code=0; - int output=yaffs_lseek(handle, 0, -1); + int output=0; + + if (handle<0){ + printf("failed to open file\n"); + return -1; + } + + + output=yaffs_lseek(handle, 0, -1); if (output<0){ error_code=yaffs_get_error();