yaffs more tests for quick tests.
[yaffs2.git] / direct / timothy_tests / quick_tests / quick_tests.c
index 71a11f89f6e6c28ce5387d1139ae14c2ca0a88e5..720fdee55a7dceaf3a67a7955f077f57ae65d47c 100644 (file)
@@ -31,16 +31,18 @@ int main(){
 
        unsigned int x=0;       
        init_quick_tests();
-       printf("\n\nrunning quick tests for yaffs\n");
+       printf("\n\nrunning quick tests for yaffs\n\n");
        //printf("testing yaffs\n");
 
        //printf("len function %d",(sizeof(test_list)/sizeof(test_template)));
        for (x=0;x<total_number_of_tests;x++){
                //printf("x %d\n",x);
                yaffs_set_error(0);     /*reset the last error to 0 */
+               printf("\nrunning test: %s \n",test_list[x].name_of_test);
                output=test_list[x].p_function();       /*run test*/
                if (output>=0){
                        /*test has passed*/
+                       printf("\ttest %s passed\n",test_list[x].name_of_test); 
                        num_of_tests_pass++;
                }
                else {
@@ -50,6 +52,7 @@ int main(){
                        num_of_tests_failed ++; 
 
                        if (EXIT_ON_ERROR){
+                               get_error();
                                printf("\n\n");
                                quit_quick_tests(1);
                        }
@@ -58,15 +61,22 @@ int main(){
                                printf("\n\n");
                        }
                }
+               output=0;
                output=test_list[x].p_function_clean(); /*clean the test*/
                if (output <0){
                        /* if the test failed to clean it's self then */
                        printf("test: %s failed to clean\n",test_list[x].name_of_test);         
                        num_of_tests_failed ++; 
                        num_of_tests_pass--;
-                       quit_quick_tests(1);
-               }
+                       get_error();
+                       printf("\n\n");
+                       if (EXIT_ON_ERROR){
+                               quit_quick_tests(1);
+                       }
                        
+               } else {
+                       printf("\ttest clean: %s passed\n",test_list[x].name_of_test);
+               }
        }
        /*this is where the loop should break to*/
        quit_quick_tests(0);
@@ -79,9 +89,6 @@ void quit_quick_tests(int exit_code){
        if (num_of_tests_pass==total_number_of_tests &&  num_of_tests_failed==0){
                printf("\t OK \n");
        }
-       else {
-               get_error();
-       }
        printf("tests: %d passed %d failed\n\n\n",num_of_tests_pass,num_of_tests_failed);
        yaffs_unmount(YAFFS_MOUNT_POINT);
        exit(exit_code);