Merge branch 'big-files': Merge in large file support
[yaffs2.git] / direct / timothy_tests / quick_tests / test_yaffs_access_EINVAL.c
index cec038986b5bbd35a333571919b7e4075bead641..f7b7e07f1543f45b7bb0fcf8f02486ee8bcd3d3f 100644 (file)
@@ -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 <timothy@yaffs.net>
 
 #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;
 }