chiark / gitweb /
lib/ tests now use Automake's test infrastructure, and are split into
[disorder] / lib / test.c
index 0682979e3323e01304c3209f45d267a058286422..63d726010410ce33ffac79e5ed18f64367f22666 100644 (file)
@@ -90,82 +90,6 @@ const char *do_printf(const char *fmt, ...) {
   return s;
 }
 
-int main(void) {
-  mem_init();
-  fail_first = !!getenv("FAIL_FIRST");
-  insist('\n' == 0x0A);
-  insist('\r' == 0x0D);
-  insist(' ' == 0x20);
-  insist('0' == 0x30);
-  insist('9' == 0x39);
-  insist('A' == 0x41);
-  insist('Z' == 0x5A);
-  insist('a' == 0x61);
-  insist('z' == 0x7A);
-  /* addr.c */
-  test_addr();
-  /* asprintf.c */
-  /* authhash.c */
-  /* basen.c */
-  test_basen();
-  /* charset.c */
-  /* client.c */
-  /* configuration.c */
-  /* event.c */
-  /* filepart.c */
-  test_filepart();
-  /* fprintf.c */
-  /* heap.c */
-  test_heap();
-  /* hex.c */
-  test_hex();
-  /* inputline.c */
-  /* kvp.c */
-  test_kvp();
-  /* log.c */
-  /* mem.c */
-  /* mime.c */
-  test_mime();
-  test_cookies();
-  /* mixer.c */
-  /* plugin.c */
-  /* printf.c */
-  test_printf();
-  /* queue.c */
-  /* sink.c */
-  test_sink();
-  /* snprintf.c */
-  /* split.c */
-  test_split();
-  /* syscalls.c */
-  /* table.c */
-  /* unicode.c */
-  test_unicode();
-  /* utf8.c */
-  test_utf8();
-  /* vector.c */
-  /* words.c */
-  test_casefold();
-  test_words();
-  /* wstat.c */
-  test_wstat();
-  /* signame.c */
-  test_signame();
-  /* cache.c */
-  test_cache();
-  /* selection.c */
-  test_selection();
-  test_hash();
-  test_url();
-  test_regsub();
-  test_bits();
-  test_vector();
-  test_syscalls();
-  test_trackname();
-  fprintf(stderr,  "%lld errors out of %lld tests\n", errors, tests);
-  return !!errors;
-}
-  
 /*
 Local Variables:
 c-basic-offset:2