yaffs Found another bug.
[yaffs2.git] / direct / timothy_tests / quick_tests / test_yaffs_open_file.c
1 #include "test_yaffs_open_file.h"
2
3
4 int test_yaffs_open_file(void){
5         
6         int output=0;
7
8         /*printf("path %s\n",path); */
9         output=yaffs_open(FILE_PATH,O_CREAT | O_TRUNC| O_RDWR, FILE_MODE);
10
11         return output;
12 }
13 int test_yaffs_open_file_clean(void){
14         return 1;
15 }
16