yaffs Have revised and checked each test in quick tests.
[yaffs2.git] / direct / timothy_tests / quick_tests / test_yaffs_read_EBADF.c
index 073f3297e44522f690255be89a67cca98df3be2f..1ae921692f2b1ceeaae1193eda6eadf088e6f125 100644 (file)
 
 #include "test_yaffs_read_EBADF.h"
 
-int test_yaffs_read_EBADF(void){
+int test_yaffs_read_EBADF(void)
+{
        int error_code=0;
        int output=0;
        char text[100];
        text[0] ='\0';
+
        output=yaffs_read(-1, text, FILE_TEXT_NBYTES);
        if (output<0){ 
-               error_code=yaffs_get_error();
-               if (abs(error_code)==EBADF){
+               error_code = yaffs_get_error();
+               if (abs(error_code) == EBADF){
                        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("read a non-existing file (which is a bad thing)\n");
+       } else{
+               print_message("read a non-existing file (which is a bad thing)\n",2);
                return -1;
        }       
 }
 
-int test_yaffs_read_EBADF_clean(void){
+int test_yaffs_read_EBADF_clean(void)
+{
        return 1;
 }