yaffs Moving timothy_tests and updating the makefiles to work with the new test-framework
[yaffs2.git] / direct / test-framework / timothy_tests / stress_tester / yaffs_tester.h
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 #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 #define MAX_NUMBER_OF_OPENED_HANDLES 70
29 #define MAX_FILE_NAME_SIZE 51
30
31 typedef struct handle_regster_template{
32         int handle[MAX_NUMBER_OF_OPENED_HANDLES];
33         char path[MAX_NUMBER_OF_OPENED_HANDLES][100];
34         int number_of_open_handles;
35 }handle_regster;
36
37
38 void init(char *yaffs_test_dir,char *yaffs_mount_dir,int argc, char *argv[]);   /*sets up yaffs and mounts yaffs */
39 void test(char *yaffs_test_dir);                                /*contains the test code*/
40 void generate_random_string(char *ptr,int length_of_str);                               /*generates a random string of letters to be used for a name*/
41 void join_paths(char *path1,char *path2,char *newpath );
42 void copy_array(char *from,char *to, unsigned int from_offset,unsigned int to_offset);
43 void stat_file(char *path);
44 void write_to_random_file(handle_regster *P_open_handles_array);
45 void close_random_file(handle_regster *P_open_handles_array);
46 void quit_program();
47 void truncate_random_file(handle_regster *P_open_handles_array);
48 #endif