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=f7b7e07f1543f45b7bb0fcf8f02486ee8bcd3d3f;hp=cec038986b5bbd35a333571919b7e4075bead641;hb=a78bce6f4a7042fa153ab32d2bb263ecf7d27b66;hpb=1c8604a29f8ca073e1f5129c58e201a4b42bc192 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..f7b7e07 100644 --- a/direct/timothy_tests/quick_tests/test_yaffs_access_EINVAL.c +++ b/direct/timothy_tests/quick_tests/test_yaffs_access_EINVAL.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,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; }