5b5cd31c8b0ac34e0ddd8c217ce83382df8b2226
[yaffs2.git] / direct / test-framework / timothy_tests / quick_tests / test_yaffs_stat.c
1 /*
2  * YAFFS: Yet another FFS. A NAND-flash specific file system.
3  *
4  * Copyright (C) 2002-2011 Aleph One Ltd.
5  *   for Toby Churchill Ltd and Brightstar Engineering
6  *
7  * Created by Timothy Manning <timothy@yaffs.net>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License version 2 as
11  * published by the Free Software Foundation.
12  */
13
14 #include "test_yaffs_stat.h"
15
16 int test_yaffs_stat(void)
17 {
18         char message[100];
19         int mode=0;
20         int size=0;
21         message[0]='\0';
22         struct yaffs_stat stat;
23         if (yaffs_close(yaffs_open(FILE_PATH,O_CREAT | O_RDWR, FILE_MODE))==-1){
24                 print_message("failed to create file \n",1);
25                 return -1;
26         }
27         return yaffs_stat(FILE_PATH, &stat);
28 }
29
30 int test_yaffs_stat_clean(void)
31 {
32         return 1;
33 }
34
35 int yaffs_test_stat_mode(void)
36 {
37         struct yaffs_stat stat;
38         int output=0;
39         output=yaffs_stat(FILE_PATH, &stat);
40         //printf("output: %d\n",output);
41         if (output>=0){
42                 return stat.st_mode;    
43         } else {
44                 print_message("failed to stat file mode\n",2) ;
45                 return -1;
46         }
47 }
48
49 int yaffs_test_stat_size(void){
50         struct yaffs_stat stat;
51         int output=0;
52         output=yaffs_stat(FILE_PATH, &stat); 
53         if (output>=0){
54                 return stat.st_size;    
55         } else {
56                 print_message("failed to stat file size\n",2) ;
57                 return -1;
58         }
59 }
60
61