X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs2.git;a=blobdiff_plain;f=direct%2Ftimothy_tests%2Fquick_tests%2Ftest_yaffs_stat_ENOENT.c;h=9a740b8e65bd5e701fcb3d9002cdb3c2ebf446f6;hp=c6ee58be43b1b601a2f6344a20494c59e62dff54;hb=c7ada078b9d435ea7e7eb4732974135e15006537;hpb=4adb62b1e4338eaa34d02fdcb0c5d99cebea6747 diff --git a/direct/timothy_tests/quick_tests/test_yaffs_stat_ENOENT.c b/direct/timothy_tests/quick_tests/test_yaffs_stat_ENOENT.c index c6ee58b..9a740b8 100644 --- a/direct/timothy_tests/quick_tests/test_yaffs_stat_ENOENT.c +++ b/direct/timothy_tests/quick_tests/test_yaffs_stat_ENOENT.c @@ -13,29 +13,29 @@ #include "test_yaffs_stat_ENOENT.h" -int test_yaffs_stat_ENOENT(void){ +int test_yaffs_stat_ENOENT(void) +{ int error_code=0; struct yaffs_stat stat; int output=0; char text[100]; text[0] ='\0'; - output=yaffs_stat("/yaffs2/non-existing_file", &stat);; + output=yaffs_stat("/yaffs2/non-existing_file", &stat); if (output<0){ error_code=yaffs_get_error(); if (abs(error_code)==ENOENT){ 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("stated a non-existing file (which is a bad thing)\n"); + } else{ + print_message("stated a non-existing file (which is a bad thing)\n",2); return -1; } } -int test_yaffs_stat_ENOENT_clean(void){ +int test_yaffs_stat_ENOENT_clean(void) +{ return 1; }