yaffs Commiting some more yaffs tests showing bugs in yaffs.
[yaffs2.git] / direct / timothy_tests / dev / yaffs_tester.h
1 /*
2  * YAFFS: Yet another Flash File System . 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 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 #ifndef __YAFFS_TESTER_H__
17         #define __YAFFS_TESTER_H__
18
19 #include <string.h>
20 #include <stdio.h>
21 #include <time.h>
22 #include <stdlib.h>
23
24 #include "yaffsfs.h"    /* it is in "yaffs2/direct/" link it in the Makefile */
25 #include "message_buffer.h"
26 #include "error_handler.h"
27         
28
29 #define MAX_FILE_NAME_SIZE 51
30
31 void init(char *yaffs_test_dir,char *yaffs_mount_dir,int argc, char *argv[]);   /*sets up yaffs and mounts yaffs */
32 void test(char *yaffs_test_dir);                                /*contains the test code*/
33 void generate_random_string(char *ptr);                         /*generates a random string of letters to be used for a name*/
34 void join_paths(char *path1,char *path2,char *newpath );
35 void copy_array(char *from,char *to, unsigned int from_offset,unsigned int to_offset);
36 #endif