X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs2.git;a=blobdiff_plain;f=direct%2Ftimothy_tests%2Fquick_tests%2Ftest_yaffs_mount_ENOENT.c;h=3f64d8aebf65bd395cfefbe328f41477b2ee9ccf;hp=01040fdf7b8c3a2def06e6ffd8393baa5e30a80d;hb=a32621e0d7f5f391e9152cfe710fa6c99ca44c50;hpb=4adb62b1e4338eaa34d02fdcb0c5d99cebea6747;ds=sidebyside diff --git a/direct/timothy_tests/quick_tests/test_yaffs_mount_ENOENT.c b/direct/timothy_tests/quick_tests/test_yaffs_mount_ENOENT.c index 01040fd..3f64d8a 100644 --- a/direct/timothy_tests/quick_tests/test_yaffs_mount_ENOENT.c +++ b/direct/timothy_tests/quick_tests/test_yaffs_mount_ENOENT.c @@ -14,37 +14,36 @@ #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(); }