yaffs Fixed more bugs in quick tests.
[yaffs2.git] / direct / timothy_tests / quick_tests / quick_tests.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 "quick_tests.h"
15
16
17 int random_seed;
18 int simulate_power_failure = 0;
19
20
21
22
23
24 static unsigned int num_of_tests_pass=0;
25 static unsigned int num_of_tests_failed=0;
26 static unsigned int total_number_of_tests=(sizeof(test_list)/sizeof(test_template));
27
28 int main(int argc, char *argv[]){
29         int output=0;
30         char message[30];
31         message[0]='\0';
32         unsigned int x=0;
33
34         init_quick_tests(argc, argv);
35         print_message("\n\nrunning quick tests for yaffs\n\n", 0);
36
37         for (x=0;x<total_number_of_tests;x++){
38                 //printf("x %d\n",x);
39                 yaffs_set_error(0);     /*reset the last error to 0 */
40                 sprintf(message,"\nrunning test: %s \n",test_list[x].name_of_test);
41                 print_message(message,3);
42                 output=test_list[x].p_function();       /*run test*/
43                 if (output>=0){
44                         /*test has passed*/
45                         sprintf(message,"\ttest %s passed\n",test_list[x].name_of_test);
46                         print_message(message,3); 
47                         num_of_tests_pass++;
48                 } else {
49                         /*test is assumed to have failed*/
50                         //printf("test failed\n");
51                         sprintf(message,"test: %s failed\n",test_list[x].name_of_test);
52                         print_message(message,1);               
53                         num_of_tests_failed ++; 
54                 
55                         get_error();
56                         print_message("\n\n",1);
57                         if (get_exit_on_error()){       
58                                 quit_quick_tests(1);
59                         }
60
61                 }
62                 output=0;
63                 output=test_list[x].p_function_clean(); /*clean the test*/
64                 if (output <0){
65                         /* if the test failed to clean it's self then */
66                         sprintf(message,"test: %s failed to clean\n",test_list[x].name_of_test);
67                         print_message(message,1);               
68                         num_of_tests_failed ++; 
69                         num_of_tests_pass--;
70                         get_error();
71                         printf("\n\n");
72                         if (get_exit_on_error()){
73                                 quit_quick_tests(1);
74                         }
75                         
76                 } else {
77                         sprintf(message,"\ttest clean: %s passed\n",test_list[x].name_of_test);
78                         print_message(message,3);
79                 }
80         }
81         /*this is where the loop should break to*/
82         quit_quick_tests(0);
83 }
84
85 void quit_quick_tests(int exit_code)
86 {
87         char message[30];
88         message[0]='\0';        
89         if (num_of_tests_pass==total_number_of_tests &&  num_of_tests_failed==0){
90                 printf("\t OK \n");
91         }
92         printf("out of %d tests: %d passed %d failed\n\n\n",total_number_of_tests,num_of_tests_pass,num_of_tests_failed);
93         yaffs_unmount(YAFFS_MOUNT_POINT);
94         exit(exit_code);
95 }
96
97 void get_error(void)
98 {
99         int error_code=0;
100         char message[30];
101         message[0]='\0';
102
103         error_code=yaffs_get_error();
104         sprintf(message,"yaffs_error code %d\n",error_code);
105         print_message(message,1);
106         sprintf(message,"error is : %s\n",yaffs_error_to_str(error_code));
107         print_message(message,1);
108 }
109
110 void init_quick_tests(int argc, char *argv[])
111 {
112         int trace=0;
113         int x=0;        
114         for (x = 0; x < argc; x++){
115                 if (0==strcmp(argv[x],"-h")){
116                         printf("help\n");
117                         printf("-h will print the commands available\n");
118                         printf("-c will continue after a test failes else the program will exit\n");
119                         printf("-v will print all messages\n");
120                         printf("-q quiet mode only the number of tests passed and failed will be printed\n");
121                         printf("-t [number] set yaffs_trace to number\n");
122                         exit(0);
123                 } else if (0==strcmp(argv[x],"-c")) {
124                         set_exit_on_error(0);
125                 } else if (0==strcmp(argv[x],"-q")) {
126                         set_print_level(-3);
127                 } else if (0==strcmp(argv[x],"-t")) {
128                         trace = atoi(argv[x+1]);
129                 }  else if (0==strcmp(argv[x],"-v")) {
130                         set_print_level(5);
131                 }
132
133         }
134         yaffs_start_up();
135         yaffs_set_trace(trace);
136
137 }