X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs2.git;a=blobdiff_plain;f=direct%2Ftimothy_tests%2Fquick_tests%2Ftest_yaffs_read_EBADF.c;h=1ae921692f2b1ceeaae1193eda6eadf088e6f125;hp=073f3297e44522f690255be89a67cca98df3be2f;hb=a45194dd1a23a750f4ee8912258243dcdbcac69a;hpb=f2c8e9cf2b72e5ac6a776a1a1b188f8595e7c35c diff --git a/direct/timothy_tests/quick_tests/test_yaffs_read_EBADF.c b/direct/timothy_tests/quick_tests/test_yaffs_read_EBADF.c index 073f329..1ae9216 100644 --- a/direct/timothy_tests/quick_tests/test_yaffs_read_EBADF.c +++ b/direct/timothy_tests/quick_tests/test_yaffs_read_EBADF.c @@ -13,28 +13,29 @@ #include "test_yaffs_read_EBADF.h" -int test_yaffs_read_EBADF(void){ +int test_yaffs_read_EBADF(void) +{ int error_code=0; int output=0; char text[100]; text[0] ='\0'; + output=yaffs_read(-1, text, FILE_TEXT_NBYTES); if (output<0){ - error_code=yaffs_get_error(); - if (abs(error_code)==EBADF){ + error_code = yaffs_get_error(); + if (abs(error_code) == EBADF){ return 1; - } - else { - printf("returned error does not match the the expected error\n"); + } else { + print_message("returned error does not match the the expected error\n",2); return -1; } - } - else{ - printf("read a non-existing file (which is a bad thing)\n"); + } else{ + print_message("read a non-existing file (which is a bad thing)\n",2); return -1; } } -int test_yaffs_read_EBADF_clean(void){ +int test_yaffs_read_EBADF_clean(void) +{ return 1; }