yaffs Have revised and checked each test in quick tests.
[yaffs2.git] / direct / timothy_tests / quick_tests / test_yaffs_unmount_ENOENT.c
index 5eb853ca8cca7cb0364c670c68cb329d2fbf1c0a..75753cda0a96e886e68f3fe09bd1dce5e9a20abe 100644 (file)
 
 #include "test_yaffs_mount_ENOENT.h"
 
-
-int test_yaffs_unmount_ENOENT(void){
+int test_yaffs_unmount_ENOENT(void)
+{
        int output=0;
        int error_code=0;
-       /*printf("path %s\n",path); */
-       
-       
 
        output=yaffs_unmount("/non_existaint_mount_point/");
        if (output==-1){
                error_code=yaffs_get_error();
                if (abs(error_code)==EINVAL){
                        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 unmounted.(which is a bad thing)\n");
+       } else {
+               print_message("non existant mount point unmounted.(which is a bad thing)\n",2);
                return -1;
        }
-
 }
-int test_yaffs_unmount_ENOENT_clean(void){
+int test_yaffs_unmount_ENOENT_clean(void)
+{
        return 1;
 }