Get timothy quick tests building cleanly.
[yaffs2.git] / direct / test-framework / timothy_tests / quick_tests / test_yaffs_rename_file_over_file.c
1 /*
2  * YAFFS: Yet another Flash File System . 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 Lesser General Public License version 2.1 as
11  * published by the Free Software Foundation.
12  *
13  * Note: Only YAFFS headers are LGPL, YAFFS C code is covered by GPL.
14  */
15
16
17 #include "test_yaffs_rename_file_over_file.h"
18
19 int  test_yaffs_rename_file_over_file(void)
20 {
21
22         int output=0;
23
24         if (yaffs_close(yaffs_open(FILE_PATH,O_CREAT | O_RDWR, FILE_MODE))==-1){
25                 print_message("failed to create file\n",1);
26                 return -1;
27         }
28         if (yaffs_close(yaffs_open(FILE_PATH2,O_CREAT | O_RDWR, FILE_MODE))==-1){
29                 print_message("failed to create file\n",1);
30                 return -1;
31         }
32         output = yaffs_rename(FILE_PATH ,FILE_PATH2 );
33         if (output<0){ 
34                 print_message("could not rename a file over a file (which is a bad thing)\n",2);
35                 return -1;
36         } 
37                 
38         return 1;
39
40 }
41
42
43 int  test_yaffs_rename_file_over_file_clean(void)
44 {
45         return 1;
46 }
47