X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs2.git;a=blobdiff_plain;f=direct%2Ftimothy_tests%2Fquick_tests%2Ftest_yaffs_unmount_ENOENT.c;h=75753cda0a96e886e68f3fe09bd1dce5e9a20abe;hp=5eb853ca8cca7cb0364c670c68cb329d2fbf1c0a;hb=a32621e0d7f5f391e9152cfe710fa6c99ca44c50;hpb=4adb62b1e4338eaa34d02fdcb0c5d99cebea6747;ds=sidebyside diff --git a/direct/timothy_tests/quick_tests/test_yaffs_unmount_ENOENT.c b/direct/timothy_tests/quick_tests/test_yaffs_unmount_ENOENT.c index 5eb853c..75753cd 100644 --- a/direct/timothy_tests/quick_tests/test_yaffs_unmount_ENOENT.c +++ b/direct/timothy_tests/quick_tests/test_yaffs_unmount_ENOENT.c @@ -13,32 +13,27 @@ #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; }