yaffs Fixed a bug in direct/timothy_tests/quick_tests
[yaffs2.git] / direct / timothy_tests / quick_tests / quick_tests.c
index f127be7f2b044b37ed60f2cee1e64c23ea43dee8..244b8b0cf729953532b707bf9663059ad8c1049a 100644 (file)
@@ -35,10 +35,11 @@ int main(int argc, char *argv[]){
        print_message("\n\nrunning quick tests for yaffs\n\n", 0);
 
        for (x=0;x<total_number_of_tests;x++){
-               output=test_yaffs_open();
-               printf("yaffs_open = %d\n",output);
-               printf("yaffs_open_clean = %d\n",yaffs_close(output));
-               yaffs_set_error(0);     /*reset the last error to 0 */
+       /*      output=yaffs_open(FILE_PATH,O_CREAT | O_RDWR, FILE_MODE);
+               printf("yaffs_open %d \n",output);
+               printf("yaffs_close %d \n",yaffs_close(output));
+       */      yaffs_set_error(0);     /*reset the last error to 0 */
+               //printf("foo exists %d\n",test_yaffs_open());
                sprintf(message,"\nrunning test: %s \n",test_list[x].name_of_test);
                print_message(message,3);
                output=test_list[x].p_function();       /*run test*/
@@ -89,9 +90,9 @@ void quit_quick_tests(int exit_code)
        char message[30];
        message[0]='\0';        
        if (num_of_tests_pass==total_number_of_tests &&  num_of_tests_failed==0){
-               printf("\t OK \n");
+               printf("\t OK --all tests passed\n");
        }
-       printf("out of %d tests: %d passed %d failed\n\n\n",total_number_of_tests,num_of_tests_pass,num_of_tests_failed);
+       printf("out of %d tests, %d ran: %d passed and %d failed\n\n\n", total_number_of_tests,(num_of_tests_pass+num_of_tests_failed) ,num_of_tests_pass,num_of_tests_failed);
        yaffs_unmount(YAFFS_MOUNT_POINT);
        exit(exit_code);
 }