X-Git-Url: https://yaffs.net/gitweb/?a=blobdiff_plain;f=direct%2Ftimothy_tests%2Fquick_tests%2Ftest_yaffs_truncate_EFBIG.c;h=0d698654916f3fe3a1a108379d55e818bf781cbe;hb=a32621e0d7f5f391e9152cfe710fa6c99ca44c50;hp=0fc79af6ead130e0a13166748c51bf11d8efdc0a;hpb=4adb62b1e4338eaa34d02fdcb0c5d99cebea6747;p=yaffs2.git diff --git a/direct/timothy_tests/quick_tests/test_yaffs_truncate_EFBIG.c b/direct/timothy_tests/quick_tests/test_yaffs_truncate_EFBIG.c index 0fc79af..0d69865 100644 --- a/direct/timothy_tests/quick_tests/test_yaffs_truncate_EFBIG.c +++ b/direct/timothy_tests/quick_tests/test_yaffs_truncate_EFBIG.c @@ -12,9 +12,10 @@ */ #include "test_yaffs_truncate_EFBIG.h" -static int handle=0; +static int handle = -1; -int test_yaffs_truncate_EFBIG(void){ +int test_yaffs_truncate_EFBIG(void) +{ int error=0; int output=0; handle=test_yaffs_open(); @@ -24,24 +25,22 @@ int test_yaffs_truncate_EFBIG(void){ error=yaffs_get_error(); if (abs(error)==EINVAL){ /*in yaffs EINVAL is used instead of EFBIG */ return 1; - } - else { - printf("received a different error than expected\n"); + } else { + print_message("received a different error than expected\n",2); return -1; } - } - else{ - printf("truncated a file to a massive size\n"); + } else{ + print_message("truncated a file to a massive size\n",2); return -1; } - } - else { - printf("error opening file"); + } else { + print_message("error opening file\n",2); return -1; } } -int test_yaffs_truncate_EFBIG_clean(void){ +int test_yaffs_truncate_EFBIG_clean(void) +{ return 1; }