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=92938e21fe2ec7472463fe23f1399c38bf4484bc;hp=c6ee58be43b1b601a2f6344a20494c59e62dff54;hb=ce0a5fb9849b6dc0d1347709b28d3a34eefec662;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..92938e2 100644 --- a/direct/timothy_tests/quick_tests/test_yaffs_stat_ENOENT.c +++ b/direct/timothy_tests/quick_tests/test_yaffs_stat_ENOENT.c @@ -1,7 +1,7 @@ /* * YAFFS: Yet another FFS. A NAND-flash specific file system. * - * Copyright (C) 2002-2010 Aleph One Ltd. + * Copyright (C) 2002-2011 Aleph One Ltd. * for Toby Churchill Ltd and Brightstar Engineering * * Created by Timothy Manning @@ -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; }