Fix copyright
[yaffs2.git] / direct / test-framework / timothy_tests / quick_tests / test_yaffs_open_EINVAL2.c
1 /*
2  * YAFFS: Yet another FFS. A NAND-flash specific file system.
3  *
4  * Copyright (C) 2002-2018 Aleph One Ltd.
5  *
6  * Created by Timothy Manning <timothy@yaffs.net>
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License version 2 as
10  * published by the Free Software Foundation.
11  */
12
13 /* yaffs will open a file without an error with the creation mode set to 255.*/
14
15 #include "test_yaffs_open_EINVAL2.h"
16
17 static int handle = -1;
18
19 int test_yaffs_open_EINVAL2(void)
20 {
21
22         handle=yaffs_open(FILE_PATH, O_CREAT | O_RDWR ,255);
23
24         /* yaffs_open does not check the modes passed into it. This means that the file should open */
25         if (handle < 0){
26                 print_message("file not opened with bad creation mode set (which is a bad thing)\n",2);
27                 return -1;
28         } else {
29                 /* file opened */
30                 return 1;
31         }
32 }
33
34 int test_yaffs_open_EINVAL2_clean(void)
35 {
36         if (handle >= 0){
37                 return yaffs_close(handle);
38         } else {
39                 return 1;       /* the file failed to open so there is no need to close it*/
40         }
41 }
42