yaffs Have revised and checked each test in quick tests.
[yaffs2.git] / direct / timothy_tests / quick_tests / test_yaffs_stat_ENOTDIR.c
index db38d16cc36b3581bdf52e8e08f12c1cb333d6bb..d0ab0e7e33686bf84d6c3d12a86d96b3daa009a2 100644 (file)
@@ -13,7 +13,8 @@
 
 #include "test_yaffs_stat_ENOTDIR.h"
 
-int test_yaffs_stat_ENOTDIR(void){
+int test_yaffs_stat_ENOTDIR(void)
+{
        int error_code=0;
        struct yaffs_stat stat;
        int output=0;
@@ -24,18 +25,17 @@ int test_yaffs_stat_ENOTDIR(void){
                error_code=yaffs_get_error();
                if (abs(error_code)==ENOTDIR){
                        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("stated a non-existing file (which is a bad thing)\n");
+       } else {
+               print_message("stated a non-existing file (which is a bad thing)\n",2);
                return -1;
        }       
 }
 
-int test_yaffs_stat_ENOTDIR_clean(void){
+int test_yaffs_stat_ENOTDIR_clean(void)
+{
        return 1;
 }