]> sjero.net Git - wget/blobdiff - src/test.c
[svn] Added sanity checks for -k, -p, -r and -N when -O is given. Added fixes for...
[wget] / src / test.c
index a124eeaa27e522ac21ba95ca8188d1266b39a886..f9102bcad5967aa4016b81572e3c417af811b294 100644 (file)
@@ -1,5 +1,5 @@
 /* Unit testing.
-   Copyright (C) 2005 Free Software Foundation, Inc.
+   Copyright (C) 2005-2006 Free Software Foundation, Inc.
 
 This file is part of GNU Wget.
 
@@ -35,14 +35,26 @@ so, delete this exception statement from your version.  */
 #error "TESTING not set!!!"
 #endif
 
-int tests_run;
+const char *test_parse_content_disposition();
+const char *test_subdir_p();
+const char *test_dir_matches_p();
+const char *test_cmd_spec_restrict_file_names();
+const char *test_append_uri_pathel();
+const char *test_are_urls_equal();
+const char *test_is_robots_txt_url();
 
-// char *test_ccache();
+int tests_run;
 
-static char *
+static const char *
 all_tests()
 {
-  // mu_run_test (test_ccache);
+  mu_run_test (test_parse_content_disposition);
+  mu_run_test (test_subdir_p);
+  mu_run_test (test_dir_matches_p);
+  mu_run_test (test_cmd_spec_restrict_file_names);
+  mu_run_test (test_append_uri_pathel);
+  mu_run_test (test_are_urls_equal);
+  mu_run_test (test_is_robots_txt_url);
   
   return NULL;
 }
@@ -51,7 +63,7 @@ all_tests()
 int
 main (void) 
 {
-  char *result = all_tests();
+  const char *result = all_tests();
   
   if (result != NULL) 
     {