X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs2.git;a=blobdiff_plain;f=direct%2Ftimothy_tests%2Fquick_tests%2Ftest_yaffs_access_EINVAL.c;h=f8ba13a37717f2236a41a477e153db30e4a57aa5;hp=cec038986b5bbd35a333571919b7e4075bead641;hb=6356b32783a8ec97b09f7090c3d10c8b88ea32e5;hpb=9123fa7a03b5a90b4c292d7f50c98d47413ab234 diff --git a/direct/timothy_tests/quick_tests/test_yaffs_access_EINVAL.c b/direct/timothy_tests/quick_tests/test_yaffs_access_EINVAL.c index cec0389..f8ba13a 100644 --- a/direct/timothy_tests/quick_tests/test_yaffs_access_EINVAL.c +++ b/direct/timothy_tests/quick_tests/test_yaffs_access_EINVAL.c @@ -13,26 +13,28 @@ #include "test_yaffs_access_EINVAL.h" -int test_yaffs_access_EINVAL(void){ +int test_yaffs_access_EINVAL(void) +{ int output=0; int error=0; + output= yaffs_access(FILE_PATH,255); if (output<0){ error=yaffs_get_error(); if ( abs(error)== EINVAL){ return 1; - } - else { - printf("error does not match expected error\n"); + } else { + print_message("error does not match expected error\n",2); return -1; } - } - else{ - printf("accessed an existing file with bad mode (which is a bad thing\n"); + } else{ + print_message("accessed an existing file with bad mode (which is a bad thing\n",2); + return -1; } } -int test_yaffs_access_EINVAL_clean(void){ +int test_yaffs_access_EINVAL_clean(void) +{ return 1; }