yaffs Have revised and checked each test in quick tests.
[yaffs2.git] / direct / timothy_tests / quick_tests / test_yaffs_mount_ENOENT.c
index 01040fdf7b8c3a2def06e6ffd8393baa5e30a80d..3f64d8aebf65bd395cfefbe328f41477b2ee9ccf 100644 (file)
 #include "test_yaffs_mount_ENOENT.h"
 
 
-int test_yaffs_mount_ENOENT(void){
-       int output=0;
-       int error_code=0;
-       /*printf("path %s\n",path); */
-       
+int test_yaffs_mount_ENOENT(void)
+{
+       int output = 0;
+       int error_code = 0;
        
        /* if a second file system is mounted then yaffs will return EBUSY. so first unmount yaffs */
-       output=test_yaffs_unmount();
-       if (output<0){
-               printf("yaffs failed to unmount\n");
+       output = test_yaffs_unmount();
+       if (output < 0){
+               print_message("yaffs failed to unmount\n", 2);
                return -1;
        } 
 
-       output=yaffs_mount("/non_existaint_mount_point/");
-       if (output==-1){
-               error_code=yaffs_get_error();
-               if (abs(error_code)==ENODEV){
+       output = yaffs_mount("/non_existaint_mount_point/");
+       if (output == -1){
+               error_code = yaffs_get_error();
+               if (abs(error_code) == ENODEV){
                        return 1;
-               }
-               else {
-                       printf("different error than expected\n");
+               } else {
+                       print_message("different error than expected\n", 2);
                        return -1;
                }
-       }
-       else {
-               printf("non existant mount point mounted.(which is a bad thing)\n");
+       } else {
+               print_message("non existant mount point mounted.(which is a bad thing)\n",2);
                return -1;
        }
 
 }
-int test_yaffs_mount_ENOENT_clean(void){
+
+int test_yaffs_mount_ENOENT_clean(void)
+{
        return test_yaffs_mount();
 }