X-Git-Url: http://sjero.net/git/?p=wget;a=blobdiff_plain;f=src%2Ftest.c;h=68c4863bca551a9ba2100ce69ec2118d9d07bf37;hp=d6a865921dc5284ab7c9b47aff6441f30f25b835;hb=38a7829dcb4eb5dba28dbf0f05c6a80fea9217f8;hpb=76780021d822779f839bbf85883292e15eb3f587 diff --git a/src/test.c b/src/test.c index d6a86592..68c4863b 100644 --- a/src/test.c +++ b/src/test.c @@ -1,5 +1,6 @@ /* Unit testing. - Copyright (C) 2005, 2006, 2007, 2008 Free Software Foundation, Inc. + Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software + Foundation, Inc. This file is part of GNU Wget. @@ -27,7 +28,7 @@ Corresponding Source for a non-source form of such a combination shall include the source code for the parts of OpenSSL used as well as that of the covered work. */ -#define USE_GNULIB_ALLOC +#include "wget.h" #include @@ -40,11 +41,15 @@ as that of the covered work. */ const char *test_parse_content_disposition(); const char *test_subdir_p(); const char *test_dir_matches_p(); +const char *test_commands_sorted(); const char *test_cmd_spec_restrict_file_names(); +const char *test_path_simplify (); const char *test_append_uri_pathel(); const char *test_are_urls_equal(); const char *test_is_robots_txt_url(); +const char *program_argstring = "TEST"; + int tests_run; static const char * @@ -53,31 +58,38 @@ all_tests() mu_run_test (test_parse_content_disposition); mu_run_test (test_subdir_p); mu_run_test (test_dir_matches_p); + mu_run_test (test_commands_sorted); mu_run_test (test_cmd_spec_restrict_file_names); + mu_run_test (test_path_simplify); mu_run_test (test_append_uri_pathel); mu_run_test (test_are_urls_equal); mu_run_test (test_is_robots_txt_url); - + return NULL; } +char *program_name; /* Needed by lib/error.c. */ int -main (void) +main (int argc _GL_UNUSED, char *argv[]) { - const char *result = all_tests(); - - if (result != NULL) + const char *result; + + program_name = argv[0]; + + result = all_tests(); + + if (result != NULL) { puts (result); } - else + else { printf ("ALL TESTS PASSED\n"); } - + printf ("Tests run: %d\n", tests_run); - + return result != 0; }