yaffs Finsing up direct/timothy_tests/threading
authorTimothy Manning <tfhmanning@gmail.com>
Thu, 6 Jan 2011 22:56:34 +0000 (11:56 +1300)
committerTimothy Manning <tfhmanning@gmail.com>
Thu, 6 Jan 2011 22:56:34 +0000 (11:56 +1300)
Signed-off-by: Timothy Manning <tfhmanning@gmail.com>
direct/timothy_tests/quick_tests/quick_tests.c
direct/timothy_tests/threading/threading.c
direct/timothy_tests/threading/threading.h

index f0fb0211d2679093db26842349a35db7ea3cc3af..b2864a00b9a754a0e5f99c369bc07d07ffefa1ae 100644 (file)
@@ -151,14 +151,14 @@ void get_error(void)
 void init_quick_tests(int argc, char *argv[])
 {
        int trace=0;
 void init_quick_tests(int argc, char *argv[])
 {
        int trace=0;
-int new_option;
+       int new_option;
        int x=0;        
        do{
                new_option=getopt_long(argc,argv,short_options,long_options,NULL);              
        int x=0;        
        do{
                new_option=getopt_long(argc,argv,short_options,long_options,NULL);              
-               if (0==strcmp(argv[x],"-h")){
+               if (new_option=='h'){
                        printf("help\n");
                        printf("-h will print the commands available\n");
                        printf("help\n");
                        printf("-h will print the commands available\n");
-                       printf("-c will continue after a test failes else the program will exit\n");
+                       printf("-c will continue after a test fails else the program will exit\n");
                        printf("-v will print all messages\n");
                        printf("-q quiet mode only the number of tests passed and failed will be printed\n");
                        printf("-t [number] set yaffs_trace to number\n");
                        printf("-v will print all messages\n");
                        printf("-q quiet mode only the number of tests passed and failed will be printed\n");
                        printf("-t [number] set yaffs_trace to number\n");
index a9ed1bb577caddc61831af9e5da1fcecfce78cd0..4b65e388eaefdb53b89258d75ccbc7fa50497213 100644 (file)
@@ -21,7 +21,7 @@ const struct option long_options[]={
        {"threads",     1,NULL,'t'}
 };
 
        {"threads",     1,NULL,'t'}
 };
 
-const char short_options[]="hqn:t:cv";
+const char short_options[]="ht:";
 
 
 
 
 
 
@@ -31,16 +31,15 @@ void main_init(int argc, char *argv[])
        int new_option;
        int x=0;
        int new_num_of_threads=5;       
        int new_option;
        int x=0;
        int new_num_of_threads=5;       
+       x=(unsigned)time(NULL);
+       printf("seeding srand with: %d\n",x);
+       srand(x);
        do{
                new_option=getopt_long(argc,argv,short_options,long_options,NULL);              
        do{
                new_option=getopt_long(argc,argv,short_options,long_options,NULL);              
-               if (0==strcmp(argv[x],"-h")){
+               if (new_option=='h'){
                        printf("help\n");
                        printf("-h will print the commands available\n");
                        printf("help\n");
                        printf("-h will print the commands available\n");
-                       printf("-c will continue after a test failes else the program will exit\n");
-                       printf("-v will print all messages\n");
-                       printf("-q quiet mode only the number of tests passed and failed will be printed\n");
-                       printf("-t [number] set yaffs_trace to number\n");
-                       printf("-n [number] sets the number of random loops to run after the the test has run\n");
+                       printf("-t [number] sets the number of threads\n");
                        exit(0);
                } else if (new_option=='t') {
                        new_num_of_threads=atoi(optarg);
                        exit(0);
                } else if (new_option=='t') {
                        new_num_of_threads=atoi(optarg);
index 025bbd97798abab44d059ba147367a404baf4883..307a30c9558b9750326750b8af21cd8077a354bf 100644 (file)
@@ -15,7 +15,7 @@
 
 #ifndef __threading_h__ 
 #define __threading_h__
 
 #ifndef __threading_h__ 
 #define __threading_h__
-
+#include <time.h>
 #include <pthread.h>
 #include <stdio.h>
 #include "thread_function.h"
 #include <pthread.h>
 #include <stdio.h>
 #include "thread_function.h"