75a5f8c110adb633ac1f899b1c245abb111c2cb0
[yaffs2.git] / direct / timothy_tests / quick_tests / test_open_file.c
1 #include "test_open_file.h"
2 #include "lib.h"
3 #include "yaffsfs.h"
4
5
6
7 int test_open_file(void){
8         
9         int output=0;
10
11         /*printf("path %s\n",path); */
12         output=yaffs_open(FILE_PATH,O_CREAT | O_TRUNC| O_RDWR, FILE_MODE);
13
14         return output;
15 }
16 int test_open_file_clean(void){
17         return 1;
18 }
19