yaffs Have revised and checked each test in quick tests.
[yaffs2.git] / direct / timothy_tests / quick_tests / test_yaffs_ftruncate.c
1 /*
2  * YAFFS: Yet another FFS. A NAND-flash specific file system.
3  *
4  * Copyright (C) 2002-2010 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_ftruncate.h"
15
16 static int handle = -1;
17
18 int test_yaffs_ftruncate(void)
19 {
20         handle = test_yaffs_open();
21         if (handle >= 0){
22                 return yaffs_ftruncate(handle,FILE_SIZE_TRUNCATED );
23         } else {
24                 print_message("error opening file\n", 2);
25                 return -1;
26         }
27 }
28
29 int test_yaffs_ftruncate_clean(void)
30 {
31         /* change file size back to orignal size */
32         int output = 0;
33         if (handle >= 0){
34                 output = yaffs_ftruncate(handle,FILE_SIZE );
35                 if (output >= 0){
36                         return yaffs_close(handle);
37                 } else {
38                         print_message("failed to truncate file\n", 2);
39                         return -1;
40                 }
41         } else {
42                 /* the file was not opened so the file could not be truncated */
43                 return 1;
44         }
45 }