1a46919123fbd79fed67fc02ea2b02d3214cc27e
[yaffs2.git] / direct / test-framework / timothy_tests / quick_tests / test_yaffs_rename_dir_over_dir.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_dir_over_dir.h"
18
19 int  test_yaffs_rename_dir_over_dir(void)
20 {
21
22         int output=0;
23         int error_code =0;
24
25         if (yaffs_mkdir(DIR_PATH,O_CREAT | O_RDWR)==-1){
26                 print_message("failed to create dir\n",1);
27                 return -1;
28         }
29         if (yaffs_mkdir(DIR_PATH2,O_CREAT | O_RDWR)==-1){
30                 print_message("failed to create dir2\n",1);
31                 return -1;
32         }
33         output = yaffs_rename(DIR_PATH ,DIR_PATH2 );
34         if (output<0){ 
35                 print_message("could not rename a directory over a empty directory (which is a bad thing)\n",2);
36                 return -1;
37         } 
38                 
39         return 1;
40
41 }
42
43
44 int  test_yaffs_rename_dir_over_dir_clean(void)
45 {
46         return 1;
47 }
48