From: Timothy Manning Date: Sun, 28 Nov 2010 23:13:51 +0000 (+1300) Subject: yaffs Added another test to direct/timothy_tests/quick_tests X-Git-Tag: linux-mainline-patchset-4~34^2 X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs2.git;a=commitdiff_plain;h=b51c7e574492e56b0c6cc63cb7e0f5e0a0b5920c yaffs Added another test to direct/timothy_tests/quick_tests Signed-off-by: Timothy Manning --- diff --git a/direct/timothy_tests/quick_tests/Makefile b/direct/timothy_tests/quick_tests/Makefile index 9ea838e..8d25cd9 100644 --- a/direct/timothy_tests/quick_tests/Makefile +++ b/direct/timothy_tests/quick_tests/Makefile @@ -50,7 +50,7 @@ TESTFILES = quick_tests.o lib.o \ test_yaffs_unmount.o test_yaffs_unmount_ENODEV.o test_yaffs_unmount_ENAMETOOLONG.o test_yaffs_unmount_EBUSY.o \ test_yaffs_open.o test_yaffs_open_ENOENT.o test_yaffs_open_ENOTDIR.o test_yaffs_open_EEXIST.o test_yaffs_open_EISDIR.o \ test_yaffs_open_ENAMETOOLONG.o test_yaffs_open_EINVAL.o test_yaffs_open_EINVAL2.o test_yaffs_open_ELOOP.o \ - test_yaffs_open_ELOOP_dir.o \ + test_yaffs_open_ELOOP_dir.o test_yaffs_open_EROFS.o \ test_yaffs_unlink.o test_yaffs_unlink_EISDIR.o test_yaffs_unlink_ENOENT.o test_yaffs_unlink_ENAMETOOLONG.o \ test_yaffs_unlink_ENOTDIR.o test_yaffs_unlink_ENOENT2.o test_yaffs_unlink_ELOOP_dir.o \ test_yaffs_ftruncate.o test_yaffs_ftruncate_EBADF.o test_yaffs_ftruncate_EINVAL.o test_yaffs_ftruncate_big_file.o \ diff --git a/direct/timothy_tests/quick_tests/quick_tests.h b/direct/timothy_tests/quick_tests/quick_tests.h index 246093e..336a1d7 100644 --- a/direct/timothy_tests/quick_tests/quick_tests.h +++ b/direct/timothy_tests/quick_tests/quick_tests.h @@ -37,6 +37,7 @@ #include "test_yaffs_open_EINVAL2.h" #include "test_yaffs_open_ELOOP.h" #include "test_yaffs_open_ELOOP_dir.h" +#include "test_yaffs_open_EROFS.h" #include "test_yaffs_close_EBADF.h" @@ -237,6 +238,7 @@ test_template test_list[]={ {test_yaffs_open_EINVAL2,test_yaffs_open_EINVAL2_clean,"test_yaffs_open_EINVAL2"}, {test_yaffs_open_ELOOP,test_yaffs_open_ELOOP_clean,"test_yaffs_open_ELOOP"}, {test_yaffs_open_ELOOP_dir,test_yaffs_open_ELOOP_dir_clean,"test_yaffs_open_ELOOP_dir"}, + {test_yaffs_open_EROFS,test_yaffs_open_EROFS_clean,"test_yaffs_open_EROFS"}, {test_yaffs_close_EBADF,test_yaffs_close_EBADF_clean,"test_yaffs_close_EBADF"}, diff --git a/direct/timothy_tests/quick_tests/test_yaffs_open_EROFS.c b/direct/timothy_tests/quick_tests/test_yaffs_open_EROFS.c new file mode 100644 index 0000000..5b85563 --- /dev/null +++ b/direct/timothy_tests/quick_tests/test_yaffs_open_EROFS.c @@ -0,0 +1,48 @@ +/* + * YAFFS: Yet another FFS. A NAND-flash specific file system. + * + * Copyright (C) 2002-2010 Aleph One Ltd. + * for Toby Churchill Ltd and Brightstar Engineering + * + * Created by Timothy Manning + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 2 as + * published by the Free Software Foundation. + */ + +#include "test_yaffs_open_EROFS.h" + +static int handle = -1; + +int test_yaffs_open_EROFS(void) +{ + int error_code = 0; + yaffs_unlink(FILE_PATH); + EROFS_setup(); + + handle = yaffs_open(FILE_PATH, O_CREAT | O_EXCL | O_TRUNC| O_RDWR ,FILE_MODE ); + if (handle == -1){ + error_code = yaffs_get_error(); + if (abs(error_code) == EROFS){ + return 1; + } else { + print_message("different error than expected\n",2); + return -1; + } + } else { + print_message("non existant file opened.(which is a bad thing)\n",2); + return -1; + } +} + +int test_yaffs_open_EROFS_clean(void) +{ + int output =1; + if (handle >=0){ + handle= yaffs_close(handle); + } + return (EROFS_clean() && output); + +} + diff --git a/direct/timothy_tests/quick_tests/test_yaffs_open_EROFS.h b/direct/timothy_tests/quick_tests/test_yaffs_open_EROFS.h new file mode 100644 index 0000000..da82256 --- /dev/null +++ b/direct/timothy_tests/quick_tests/test_yaffs_open_EROFS.h @@ -0,0 +1,25 @@ +/* + * YAFFS: Yet another Flash File System . A NAND-flash specific file system. + * + * Copyright (C) 2002-2010 Aleph One Ltd. + * for Toby Churchill Ltd and Brightstar Engineering + * + * Created by Timothy Manning + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License version 2.1 as + * published by the Free Software Foundation. + * + * Note: Only YAFFS headers are LGPL, YAFFS C code is covered by GPL. + */ + +#ifndef __test_yaffs_open_EROFS_h__ +#define __test_yaffs_open_EROFS_h__ + +#include "lib.h" +#include "yaffsfs.h" + +int test_yaffs_open_EROFS(void); +int test_yaffs_open_EROFS_clean(void); + +#endif