yaffs Finshed direct/timothy_tests/linux_test.
authorTimothy Manning <tfhmanning@gmail.com>
Thu, 27 Jan 2011 23:14:38 +0000 (12:14 +1300)
committerTimothy Manning <tfhmanning@gmail.com>
Thu, 27 Jan 2011 23:14:38 +0000 (12:14 +1300)
Signed-off-by: Timothy Manning <tfhmanning@gmail.com>
direct/timothy_tests/linux_tests/lib.c
direct/timothy_tests/linux_tests/lib.h
direct/timothy_tests/linux_tests/linux_test.c
direct/timothy_tests/linux_tests/linux_test.h

index c5adae72e2d2d71d4e1064684aff17cb86048f23..ffc9b0555f468449abca88f6702f53e0f9d824be 100644 (file)
 #include "lib.h"
 static char message[200];
 static int  PRINT_LEVEL = 3;
+static int exit_on_error_val =1;
+
+int get_exit_on_error(void)
+{
+       return exit_on_error_val;
+}
+
+void set_exit_on_error(int val)
+{
+       exit_on_error_val=val;
+}
 
 node * linked_list_add_node(int pos,node *head_node)
 {
index 22f6bc33968c83b20d10e8c174bc37a707c70609..a47a1b80490d7b29358626cd6811836bd425a041 100644 (file)
@@ -31,6 +31,8 @@ typedef struct node_temp{
        struct node_temp *next; 
 }node;
 
+int get_exit_on_error(void);
+void set_exit_on_error(int val);
 int delete_linked_list(node *head_node);
 node * linked_list_add_node(int pos,node *head_node);
 unsigned int random_int(void);
index cb3a30018fddd47028a6502762480ecb454bb5ba..88732ad66a69b9931e7c98cdafd80541f80c3b22 100644 (file)
@@ -18,12 +18,76 @@ int simulate_power_failure = 1;
 
 char message[400];     //this is used for storing print messages.
 
-int main()
+
+
+const struct option long_options[]={
+       {"help",        0,NULL,'h'},
+
+
+       {"print_level", 1,NULL,'p'},
+       {"quiet",       0,NULL,'q'},
+
+       {"seed",        1,NULL,'s'},
+
+       {"verbose",     0,NULL,'v'}
+};
+
+const char short_options[]="hp:qs:v";
+
+
+void init(int argc, char *argv[])
+{
+       char dir[200];
+       dir[0]='\0';
+       int x=-1;
+       char message[100];
+       int new_option;
+
+       x=(unsigned)time(NULL);
+       sprintf(message,"seeding srand with: %d\n",x);
+       print_message(2,message);
+       srand(x);
+       yaffs_set_trace(0);
+
+
+       do {
+               new_option=getopt_long(argc,argv,short_options,long_options,NULL);              
+               if (new_option=='h'){
+                       printf("mirror_tests help\n");
+                       printf("arguments:\n");
+                       printf("\t-p [NUMBER] //sets the print level for mirror_tests.\n");
+                       printf("\t-v //verbose mode everything is printed\n");
+                       printf("\t-q //quiet mode nothing is printed.\n");
+                       printf("\t-s [number] //seeds rand with the number\n");
+
+                       exit(0);
+       
+               } else if (new_option=='p'){
+                       set_print_level(atoi(optarg));
+               } else if (new_option=='v'){
+                       set_print_level(5);
+               } else if (new_option=='q'){
+                       set_print_level(-1);
+               } else if (new_option=='s'){
+                       srand(atoi(argv[x+1]));
+
+               } else if (new_option==-1){
+
+               } else if (new_option=='?') {
+                       printf("bad argument\n");
+                       exit(0);
+               }
+       }while(new_option!=-1);
+}
+
+int main(int argc, char *argv[])
 {
        dir_struct *scanned_dir=NULL;
        int output=0;
        int break_bool=0;
        int x=5;
+
+       init(argc,argv); 
        while( 1){
                while (break_bool!=1){
                        //printf("x %d\n",x);
@@ -80,7 +144,7 @@ dir_struct * scan_dir(void)
        struct dirent *dir_data;        
        dir_struct *dir=NULL;
        dir=malloc(sizeof(dir_struct));
-       memset(dir, NULL, sizeof(dir_struct));
+       memset(dir, 0, sizeof(dir_struct));
        DIR *open_dir=NULL;
 
 
@@ -95,22 +159,24 @@ dir_struct * scan_dir(void)
                dir_data=readdir(open_dir);
        }
        closedir(open_dir);
-       node_print_pointers(dir->path_list);
+       //node_print_pointers(dir->path_list);
        return dir;
 }
 
 int check_dir(dir_struct *old_dir)
 {
+       print_message(3,"scanning new dir\n");
        dir_struct *new_dir=scan_dir();
        node *new_list=new_dir->path_list;
        node *old_list=old_dir->path_list;
-       int exit_loop=0;
+       int exit_loop=0,error=0;
        print_message(3,"checking dir\n");
        for (;old_list!= NULL;old_list=old_list->next){
-               
-               for (;(new_list=NULL) && (exit_loop !=1);new_list=new_list->next){
-                       sprintf(message,"comparing %s  and %s\n",old_list->string,new_list->string);
-                       print_message(3,message);
+               //sprintf(message,"new_list=!NULL= %d, exit_loop !=1 = %d\n",(new_list!=NULL),(exit_loop !=1));
+               //print_message(3,message);
+               for (;(new_list!=NULL) && (exit_loop !=1);new_list=new_list->next){
+                       //sprintf(message,"comparing %s  and %s\n",old_list->string,new_list->string);
+                       //print_message(3,message);
                        if (strcmp( new_list->string ,old_list->string)==0){
                                //files match -now compare the modes and contents of the files.
                                //and set the paths to NULL.
@@ -125,6 +191,7 @@ int check_dir(dir_struct *old_dir)
                        //failed to find a matching file
                        sprintf(message,"a file has disappeared: %s\n",old_list->string); 
                        print_message(3,message);
+                       error=1;
                        
                }
                new_list=new_dir->path_list;
@@ -139,17 +206,30 @@ int check_dir(dir_struct *old_dir)
        old_dir->path_list=NULL;
        free(old_dir);
        free(new_dir);
+       if (error ==1){
+               print_message(3,"checking dir failed\n");
+               if (get_exit_on_error()==1){
+                       print_message(3,"exiting_program\n");
+                       exit(0);
+               }
+       }
+
+       else if (error !=1){
+               print_message(3,"checking dir passed\n");
+       }
+       return error;
 }
 
 int remount_test(void)
 {
        int output;
        print_message(3,"\nunmounting\n");
-       output=umount2("/mnt/y",MNT_FORCE);
+       output=umount2("/mnt/y",1);
        check_function(output);
        print_message(3,"mounting\n");
        mount("/dev/mtdblock0","/mnt/y","yaffs2",0,NULL);
        check_function(output);
+       return output;
 }
 
 int mkdir_test(void)
index 58e3ccbc3837e1edfd72f856d97907ae873a5ae0..472449ce1208d3146cce6bb33cd270d1082d8e9c 100644 (file)
@@ -24,7 +24,8 @@
 #include <sys/mount.h>
 #include "lib.h"
 #include <fcntl.h>
-
+#include <time.h>
+#include <getopt.h>
 
 typedef struct dir_struct_temp{ 
        node *path_list;