X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs2.git;a=blobdiff_plain;f=direct%2Ftimothy_tests%2Fquick_tests%2Ftest_yaffs_stat_ENOTDIR.c;fp=direct%2Ftimothy_tests%2Fquick_tests%2Ftest_yaffs_stat_ENOTDIR.c;h=d0ab0e7e33686bf84d6c3d12a86d96b3daa009a2;hp=db38d16cc36b3581bdf52e8e08f12c1cb333d6bb;hb=a32621e0d7f5f391e9152cfe710fa6c99ca44c50;hpb=4adb62b1e4338eaa34d02fdcb0c5d99cebea6747 diff --git a/direct/timothy_tests/quick_tests/test_yaffs_stat_ENOTDIR.c b/direct/timothy_tests/quick_tests/test_yaffs_stat_ENOTDIR.c index db38d16..d0ab0e7 100644 --- a/direct/timothy_tests/quick_tests/test_yaffs_stat_ENOTDIR.c +++ b/direct/timothy_tests/quick_tests/test_yaffs_stat_ENOTDIR.c @@ -13,7 +13,8 @@ #include "test_yaffs_stat_ENOTDIR.h" -int test_yaffs_stat_ENOTDIR(void){ +int test_yaffs_stat_ENOTDIR(void) +{ int error_code=0; struct yaffs_stat stat; int output=0; @@ -24,18 +25,17 @@ int test_yaffs_stat_ENOTDIR(void){ error_code=yaffs_get_error(); if (abs(error_code)==ENOTDIR){ 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_ENOTDIR_clean(void){ +int test_yaffs_stat_ENOTDIR_clean(void) +{ return 1; }