yaffs Have revised and checked each test in quick tests.
[yaffs2.git] / direct / timothy_tests / quick_tests / test_yaffs_truncate_EFBIG.c
index 0fc79af6ead130e0a13166748c51bf11d8efdc0a..0d698654916f3fe3a1a108379d55e818bf781cbe 100644 (file)
  */
 
 #include "test_yaffs_truncate_EFBIG.h"
-static int handle=0;
+static int handle = -1;
 
-int test_yaffs_truncate_EFBIG(void){
+int test_yaffs_truncate_EFBIG(void)
+{
        int error=0;
        int output=0;
        handle=test_yaffs_open();
@@ -24,24 +25,22 @@ int test_yaffs_truncate_EFBIG(void){
                        error=yaffs_get_error();
                        if (abs(error)==EINVAL){        /*in yaffs EINVAL is used instead of EFBIG */
                                return 1;
-                       }
-                       else {
-                               printf("received a different error than expected\n");
+                       } else {
+                               print_message("received a different error than expected\n",2);
                                return -1;
                        }
-               }
-               else{
-                       printf("truncated a file to a massive size\n");
+               } else{
+                       print_message("truncated a file to a massive size\n",2);
                        return -1;
                }
                        
-       }
-       else {
-               printf("error opening file");
+       } else {
+               print_message("error opening file\n",2);
                return -1;
        }
 }
 
-int test_yaffs_truncate_EFBIG_clean(void){
+int test_yaffs_truncate_EFBIG_clean(void)
+{
        return 1;
 }