chiark / gitweb /
table-drive UTF-8 validity checker
[disorder] / lib / test.c
... / ...
CommitLineData
1/*
2 * This file is part of DisOrder.
3 * Copyright (C) 2005, 2007 Richard Kettlewell
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
18 * USA
19 */
20/** @file lib/test.c @brief Library tests */
21
22#include <config.h>
23#include "types.h"
24
25#include <stdio.h>
26#include <string.h>
27#include <stdlib.h>
28#include <errno.h>
29#include <ctype.h>
30#include <assert.h>
31#include <sys/types.h>
32#include <sys/stat.h>
33
34#include "utf8.h"
35#include "mem.h"
36#include "log.h"
37#include "vector.h"
38#include "charset.h"
39#include "mime.h"
40#include "hex.h"
41#include "words.h"
42#include "heap.h"
43#include "unicode.h"
44#include "inputline.h"
45#include "wstat.h"
46
47static int tests, errors;
48static int fail_first;
49
50static void count_error() {
51 ++errors;
52 if(fail_first)
53 abort();
54}
55
56/** @brief Checks that @p expr is nonzero */
57#define insist(expr) do { \
58 if(!(expr)) { \
59 count_error(); \
60 fprintf(stderr, "%s:%d: error checking %s\n", \
61 __FILE__, __LINE__, #expr); \
62 } \
63 ++tests; \
64} while(0)
65
66static const char *format(const char *s) {
67 struct dynstr d;
68 int c;
69 char buf[10];
70
71 dynstr_init(&d);
72 while((c = (unsigned char)*s++)) {
73 if(c >= ' ' && c <= '~')
74 dynstr_append(&d, c);
75 else {
76 sprintf(buf, "\\x%02X", (unsigned)c);
77 dynstr_append_string(&d, buf);
78 }
79 }
80 dynstr_terminate(&d);
81 return d.vec;
82}
83
84static const char *format_utf32(const uint32_t *s) {
85 struct dynstr d;
86 uint32_t c;
87 char buf[64];
88
89 dynstr_init(&d);
90 while((c = *s++)) {
91 if(c >= 32 && c <= 127)
92 dynstr_append(&d, c);
93 else {
94 sprintf(buf, "\\x%04lX", (unsigned long)c);
95 dynstr_append_string(&d, buf);
96 }
97 }
98 dynstr_terminate(&d);
99 return d.vec;
100}
101
102#define check_string(GOT, WANT) do { \
103 const char *g = GOT; \
104 const char *w = WANT; \
105 \
106 if(w == 0) { \
107 fprintf(stderr, "%s:%d: %s returned 0\n", \
108 __FILE__, __LINE__, #GOT); \
109 count_error(); \
110 } else if(strcmp(w, g)) { \
111 fprintf(stderr, "%s:%d: %s returned:\n%s\nexpected:\n%s\n", \
112 __FILE__, __LINE__, #GOT, format(g), format(w)); \
113 count_error(); \
114 } \
115 ++tests; \
116 } while(0)
117
118static uint32_t *ucs4parse(const char *s) {
119 struct dynstr_ucs4 d;
120 char *e;
121
122 dynstr_ucs4_init(&d);
123 while(*s) {
124 errno = 0;
125 dynstr_ucs4_append(&d, strtoul(s, &e, 0));
126 if(errno) fatal(errno, "strtoul (%s)", s);
127 s = e;
128 }
129 dynstr_ucs4_terminate(&d);
130 return d.vec;
131}
132
133static void test_utf8(void) {
134 /* Test validutf8, convert to UCS-4, check the answer is right,
135 * convert back to UTF-8, check we got to where we started */
136#define U8(CHARS, WORDS) do { \
137 uint32_t *w = ucs4parse(WORDS); \
138 uint32_t *ucs; \
139 char *u8; \
140 \
141 insist(validutf8(CHARS)); \
142 ucs = utf82ucs4(CHARS); \
143 insist(ucs != 0); \
144 insist(!ucs4cmp(w, ucs)); \
145 u8 = ucs42utf8(ucs); \
146 insist(u8 != 0); \
147 insist(!strcmp(u8, CHARS)); \
148} while(0)
149
150 fprintf(stderr, "test_utf8\n");
151#define validutf8(S) utf8_valid((S), strlen(S))
152
153 /* empty string */
154
155 U8("", "");
156
157 /* ASCII characters */
158
159 U8(" !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~",
160 "0x20 0x21 0x22 0x23 0x24 0x25 0x26 0x27 0x28 0x29 0x2a 0x2b 0x2c 0x2d "
161 "0x2e 0x2f 0x30 0x31 0x32 0x33 0x34 0x35 0x36 0x37 0x38 0x39 0x3a "
162 "0x3b 0x3c 0x3d 0x3e 0x3f 0x40 0x41 0x42 0x43 0x44 0x45 0x46 0x47 "
163 "0x48 0x49 0x4a 0x4b 0x4c 0x4d 0x4e 0x4f 0x50 0x51 0x52 0x53 0x54 "
164 "0x55 0x56 0x57 0x58 0x59 0x5a 0x5b 0x5c 0x5d 0x5e 0x5f 0x60 0x61 "
165 "0x62 0x63 0x64 0x65 0x66 0x67 0x68 0x69 0x6a 0x6b 0x6c 0x6d 0x6e "
166 "0x6f 0x70 0x71 0x72 0x73 0x74 0x75 0x76 0x77 0x78 0x79 0x7a 0x7b "
167 "0x7c 0x7d 0x7e");
168 U8("\001\002\003\004\005\006\007\010\011\012\013\014\015\016\017\020\021\022\023\024\025\026\027\030\031\032\033\034\035\036\037\177",
169 "0x1 0x2 0x3 0x4 0x5 0x6 0x7 0x8 0x9 0xa 0xb 0xc 0xd 0xe 0xf 0x10 "
170 "0x11 0x12 0x13 0x14 0x15 0x16 0x17 0x18 0x19 0x1a 0x1b 0x1c 0x1d "
171 "0x1e 0x1f 0x7f");
172
173 /* from RFC3629 */
174
175 /* UTF8-2 = %xC2-DF UTF8-tail */
176 insist(!validutf8("\xC0\x80"));
177 insist(!validutf8("\xC1\x80"));
178 insist(!validutf8("\xC2\x7F"));
179 U8("\xC2\x80", "0x80");
180 U8("\xDF\xBF", "0x7FF");
181 insist(!validutf8("\xDF\xC0"));
182
183 /* UTF8-3 = %xE0 %xA0-BF UTF8-tail / %xE1-EC 2( UTF8-tail ) /
184 * %xED %x80-9F UTF8-tail / %xEE-EF 2( UTF8-tail )
185 */
186 insist(!validutf8("\xE0\x9F\x80"));
187 U8("\xE0\xA0\x80", "0x800");
188 U8("\xE0\xBF\xBF", "0xFFF");
189 insist(!validutf8("\xE0\xC0\xBF"));
190
191 insist(!validutf8("\xE1\x80\x7F"));
192 U8("\xE1\x80\x80", "0x1000");
193 U8("\xEC\xBF\xBF", "0xCFFF");
194 insist(!validutf8("\xEC\xC0\xBF"));
195
196 U8("\xED\x80\x80", "0xD000");
197 U8("\xED\x9F\xBF", "0xD7FF");
198 insist(!validutf8("\xED\xA0\xBF"));
199
200 insist(!validutf8("\xEE\x7f\x80"));
201 U8("\xEE\x80\x80", "0xE000");
202 U8("\xEF\xBF\xBF", "0xFFFF");
203 insist(!validutf8("\xEF\xC0\xBF"));
204
205 /* UTF8-4 = %xF0 %x90-BF 2( UTF8-tail ) / %xF1-F3 3( UTF8-tail ) /
206 * %xF4 %x80-8F 2( UTF8-tail )
207 */
208 insist(!validutf8("\xF0\x8F\x80\x80"));
209 U8("\xF0\x90\x80\x80", "0x10000");
210 U8("\xF0\xBF\xBF\xBF", "0x3FFFF");
211 insist(!validutf8("\xF0\xC0\x80\x80"));
212
213 insist(!validutf8("\xF1\x80\x80\x7F"));
214 U8("\xF1\x80\x80\x80", "0x40000");
215 U8("\xF3\xBF\xBF\xBF", "0xFFFFF");
216 insist(!validutf8("\xF3\xC0\x80\x80"));
217
218 insist(!validutf8("\xF4\x80\x80\x7F"));
219 U8("\xF4\x80\x80\x80", "0x100000");
220 U8("\xF4\x8F\xBF\xBF", "0x10FFFF");
221 insist(!validutf8("\xF4\x90\x80\x80"));
222
223 /* miscellaneous non-UTF-8 rubbish */
224 insist(!validutf8("\x80"));
225 insist(!validutf8("\xBF"));
226 insist(!validutf8("\xC0"));
227 insist(!validutf8("\xC0\x7F"));
228 insist(!validutf8("\xC0\xC0"));
229 insist(!validutf8("\xE0"));
230 insist(!validutf8("\xE0\x7F"));
231 insist(!validutf8("\xE0\xC0"));
232 insist(!validutf8("\xE0\x80"));
233 insist(!validutf8("\xE0\x80\x7f"));
234 insist(!validutf8("\xE0\x80\xC0"));
235 insist(!validutf8("\xF0"));
236 insist(!validutf8("\xF0\x7F"));
237 insist(!validutf8("\xF0\xC0"));
238 insist(!validutf8("\xF0\x80"));
239 insist(!validutf8("\xF0\x80\x7f"));
240 insist(!validutf8("\xF0\x80\xC0"));
241 insist(!validutf8("\xF0\x80\x80\x7f"));
242 insist(!validutf8("\xF0\x80\x80\xC0"));
243 insist(!validutf8("\xF5\x80\x80\x80"));
244 insist(!validutf8("\xF8"));
245}
246
247static void test_mime(void) {
248 char *t, *n, *v;
249
250 fprintf(stderr, "test_mime\n");
251
252 t = n = v = 0;
253 insist(!mime_content_type("text/plain", &t, &n, &v));
254 insist(!strcmp(t, "text/plain"));
255 insist(n == 0);
256 insist(v == 0);
257
258 t = n = v = 0;
259 insist(!mime_content_type("TEXT ((nested) comment) /plain", &t, &n, &v));
260 insist(!strcmp(t, "text/plain"));
261 insist(n == 0);
262 insist(v == 0);
263
264 t = n = v = 0;
265 insist(!mime_content_type(" text/plain ; Charset=utf-8", &t, &n, &v));
266 insist(!strcmp(t, "text/plain"));
267 insist(!strcmp(n, "charset"));
268 insist(!strcmp(v, "utf-8"));
269
270 t = n = v = 0;
271 insist(!mime_content_type("text/plain;charset = ISO-8859-1 ", &t, &n, &v));
272 insist(!strcmp(t, "text/plain"));
273 insist(!strcmp(n, "charset"));
274 insist(!strcmp(v, "ISO-8859-1"));
275
276 /* XXX mime_parse */
277 /* XXX mime_multipart */
278 /* XXX mime_rfc2388_content_disposition */
279
280 check_string(mime_qp(""), "");
281 check_string(mime_qp("foobar"), "foobar");
282 check_string(mime_qp("foo=20bar"), "foo bar");
283 check_string(mime_qp("x \r\ny"), "x\r\ny");
284 check_string(mime_qp("x=\r\ny"), "xy");
285 check_string(mime_qp("x= \r\ny"), "xy");
286 check_string(mime_qp("x =\r\ny"), "x y");
287 check_string(mime_qp("x = \r\ny"), "x y");
288
289 /* from RFC2045 */
290 check_string(mime_qp("Now's the time =\r\n"
291"for all folk to come=\r\n"
292" to the aid of their country."),
293 "Now's the time for all folk to come to the aid of their country.");
294
295 check_string(mime_base64(""), "");
296 check_string(mime_base64("BBBB"), "\x04\x10\x41");
297 check_string(mime_base64("////"), "\xFF\xFF\xFF");
298 check_string(mime_base64("//BB"), "\xFF\xF0\x41");
299 check_string(mime_base64("BBBB//BB////"),
300 "\x04\x10\x41" "\xFF\xF0\x41" "\xFF\xFF\xFF");
301 check_string(mime_base64("B B B B / / B B / / / /"),
302 "\x04\x10\x41" "\xFF\xF0\x41" "\xFF\xFF\xFF");
303 check_string(mime_base64("B\r\nBBB.// B-B//~//"),
304 "\x04\x10\x41" "\xFF\xF0\x41" "\xFF\xFF\xFF");
305 check_string(mime_base64("BBBB="),
306 "\x04\x10\x41");
307 check_string(mime_base64("BBBBx="), /* not actually valid base64 */
308 "\x04\x10\x41");
309 check_string(mime_base64("BBBB BB=="),
310 "\x04\x10\x41" "\x04");
311 check_string(mime_base64("BBBB BBB="),
312 "\x04\x10\x41" "\x04\x10");
313}
314
315static void test_hex(void) {
316 unsigned n;
317 static const unsigned char h[] = { 0x00, 0xFF, 0x80, 0x7F };
318 uint8_t *u;
319 size_t ul;
320
321 fprintf(stderr, "test_hex\n");
322
323 for(n = 0; n <= UCHAR_MAX; ++n) {
324 if(!isxdigit(n))
325 insist(unhexdigitq(n) == -1);
326 }
327 insist(unhexdigitq('0') == 0);
328 insist(unhexdigitq('1') == 1);
329 insist(unhexdigitq('2') == 2);
330 insist(unhexdigitq('3') == 3);
331 insist(unhexdigitq('4') == 4);
332 insist(unhexdigitq('5') == 5);
333 insist(unhexdigitq('6') == 6);
334 insist(unhexdigitq('7') == 7);
335 insist(unhexdigitq('8') == 8);
336 insist(unhexdigitq('9') == 9);
337 insist(unhexdigitq('a') == 10);
338 insist(unhexdigitq('b') == 11);
339 insist(unhexdigitq('c') == 12);
340 insist(unhexdigitq('d') == 13);
341 insist(unhexdigitq('e') == 14);
342 insist(unhexdigitq('f') == 15);
343 insist(unhexdigitq('A') == 10);
344 insist(unhexdigitq('B') == 11);
345 insist(unhexdigitq('C') == 12);
346 insist(unhexdigitq('D') == 13);
347 insist(unhexdigitq('E') == 14);
348 insist(unhexdigitq('F') == 15);
349 check_string(hex(h, sizeof h), "00ff807f");
350 check_string(hex(0, 0), "");
351 u = unhex("00ff807f", &ul);
352 insist(ul == 4);
353 insist(memcmp(u, h, 4) == 0);
354 u = unhex("00FF807F", &ul);
355 insist(ul == 4);
356 insist(memcmp(u, h, 4) == 0);
357 u = unhex("", &ul);
358 insist(ul == 0);
359 fprintf(stderr, "2 ERROR reports expected {\n");
360 insist(unhex("F", 0) == 0);
361 insist(unhex("az", 0) == 0);
362 fprintf(stderr, "}\n");
363}
364
365static void test_casefold(void) {
366 uint32_t c, l;
367 const char *input, *canon_folded, *compat_folded, *canon_expected, *compat_expected;
368
369 fprintf(stderr, "test_casefold\n");
370
371 /* This isn't a very exhaustive test. Unlike for normalization, there don't
372 * seem to be any public test vectors for these algorithms. */
373
374 for(c = 1; c < 256; ++c) {
375 input = utf32_to_utf8(&c, 1, 0);
376 canon_folded = utf8_casefold_canon(input, strlen(input), 0);
377 compat_folded = utf8_casefold_compat(input, strlen(input), 0);
378 switch(c) {
379 default:
380 if((c >= 'A' && c <= 'Z')
381 || (c >= 0xC0 && c <= 0xDE && c != 0xD7))
382 l = c ^ 0x20;
383 else
384 l = c;
385 break;
386 case 0xB5: /* MICRO SIGN */
387 l = 0x3BC; /* GREEK SMALL LETTER MU */
388 break;
389 case 0xDF: /* LATIN SMALL LETTER SHARP S */
390 insist(!strcmp(canon_folded, "ss"));
391 insist(!strcmp(compat_folded, "ss"));
392 l = 0;
393 break;
394 }
395 if(l) {
396 /* Case-folded data is now normalized */
397 canon_expected = ucs42utf8(utf32_decompose_canon(&l, 1, 0));
398 if(strcmp(canon_folded, canon_expected)) {
399 fprintf(stderr, "%s:%d: canon-casefolding %#lx got '%s', expected '%s'\n",
400 __FILE__, __LINE__, (unsigned long)c,
401 format(canon_folded), format(canon_expected));
402 count_error();
403 }
404 ++tests;
405 compat_expected = ucs42utf8(utf32_decompose_compat(&l, 1, 0));
406 if(strcmp(compat_folded, compat_expected)) {
407 fprintf(stderr, "%s:%d: compat-casefolding %#lx got '%s', expected '%s'\n",
408 __FILE__, __LINE__, (unsigned long)c,
409 format(compat_folded), format(compat_expected));
410 count_error();
411 }
412 ++tests;
413 }
414 }
415 check_string(casefold(""), "");
416}
417
418/** @brief Less-than comparison function for integer heap */
419static inline int int_lt(int a, int b) { return a < b; }
420
421/** @struct iheap
422 * @brief A heap with @c int elements */
423HEAP_TYPE(iheap, int, int_lt);
424HEAP_DEFINE(iheap, int, int_lt);
425
426/** @brief Tests for @ref heap.h */
427static void test_heap(void) {
428 struct iheap h[1];
429 int n;
430 int last = -1;
431
432 fprintf(stderr, "test_heap\n");
433
434 iheap_init(h);
435 for(n = 0; n < 1000; ++n)
436 iheap_insert(h, random() % 100);
437 for(n = 0; n < 1000; ++n) {
438 const int latest = iheap_remove(h);
439 if(last > latest)
440 fprintf(stderr, "should have %d <= %d\n", last, latest);
441 insist(last <= latest);
442 last = latest;
443 }
444 putchar('\n');
445}
446
447/** @brief Open a Unicode test file */
448static FILE *open_unicode_test(const char *path) {
449 const char *base;
450 FILE *fp;
451 char buffer[1024];
452 int w;
453
454 if((base = strrchr(path, '/')))
455 ++base;
456 else
457 base = path;
458 if(!(fp = fopen(base, "r"))) {
459 snprintf(buffer, sizeof buffer,
460 "wget http://www.unicode.org/Public/5.0.0/ucd/%s", path);
461 if((w = system(buffer)))
462 fatal(0, "%s: %s", buffer, wstat(w));
463 if(chmod(base, 0444) < 0)
464 fatal(errno, "chmod %s", base);
465 if(!(fp = fopen(base, "r")))
466 fatal(errno, "%s", base);
467 }
468 return fp;
469}
470
471/** @brief Run breaking tests for utf32_grapheme_boundary() etc */
472static void breaktest(const char *path,
473 int (*breakfn)(const uint32_t *, size_t, size_t)) {
474 FILE *fp = open_unicode_test(path);
475 int lineno = 0;
476 char *l, *lp;
477 size_t bn, n;
478 char break_allowed[1024];
479 uint32_t buffer[1024];
480
481 while(!inputline(path, fp, &l, '\n')) {
482 ++lineno;
483 if(l[0] == '#') continue;
484 bn = 0;
485 lp = l;
486 while(*lp) {
487 if(*lp == ' ' || *lp == '\t') {
488 ++lp;
489 continue;
490 }
491 if(*lp == '#')
492 break;
493 if((unsigned char)*lp == 0xC3 && (unsigned char)lp[1] == 0xB7) {
494 /* 00F7 DIVISION SIGN */
495 break_allowed[bn] = 1;
496 lp += 2;
497 continue;
498 }
499 if((unsigned char)*lp == 0xC3 && (unsigned char)lp[1] == 0x97) {
500 /* 00D7 MULTIPLICATION SIGN */
501 break_allowed[bn] = 0;
502 lp += 2;
503 continue;
504 }
505 if(isxdigit((unsigned char)*lp)) {
506 buffer[bn++] = strtoul(lp, &lp, 16);
507 continue;
508 }
509 fatal(0, "%s:%d: evil line: %s", path, lineno, l);
510 }
511 for(n = 0; n <= bn; ++n) {
512 if(breakfn(buffer, bn, n) != break_allowed[n]) {
513 fprintf(stderr,
514 "%s:%d: offset %zu: mismatch\n",
515 path, lineno, n);
516 count_error();
517 }
518 ++tests;
519 }
520 xfree(l);
521 }
522 fclose(fp);
523}
524
525/** @brief Tests for @ref lib/unicode.h */
526static void test_unicode(void) {
527 FILE *fp;
528 int lineno = 0;
529 char *l, *lp;
530 uint32_t buffer[1024];
531 uint32_t *c[6], *NFD_c[6], *NFKD_c[6]; /* 1-indexed */
532 int cn, bn;
533
534 fprintf(stderr, "test_unicode\n");
535 fp = open_unicode_test("NormalizationTest.txt");
536 while(!inputline("NormalizationTest.txt", fp, &l, '\n')) {
537 ++lineno;
538 if(*l == '#' || *l == '@')
539 continue;
540 bn = 0;
541 cn = 1;
542 lp = l;
543 c[cn++] = &buffer[bn];
544 while(*lp && *lp != '#') {
545 if(*lp == ' ') {
546 ++lp;
547 continue;
548 }
549 if(*lp == ';') {
550 buffer[bn++] = 0;
551 if(cn == 6)
552 break;
553 c[cn++] = &buffer[bn];
554 ++lp;
555 continue;
556 }
557 buffer[bn++] = strtoul(lp, &lp, 16);
558 }
559 buffer[bn] = 0;
560 assert(cn == 6);
561 for(cn = 1; cn <= 5; ++cn) {
562 NFD_c[cn] = utf32_decompose_canon(c[cn], utf32_len(c[cn]), 0);
563 NFKD_c[cn] = utf32_decompose_compat(c[cn], utf32_len(c[cn]), 0);
564 }
565#define unt_check(T, A, B) do { \
566 ++tests; \
567 if(utf32_cmp(c[A], T##_c[B])) { \
568 fprintf(stderr, \
569 "NormalizationTest.txt:%d: c%d != "#T"(c%d)\n", \
570 lineno, A, B); \
571 fprintf(stderr, " c%d: %s\n", \
572 A, format_utf32(c[A])); \
573 fprintf(stderr, "%4s(c%d): %s\n", \
574 #T, B, format_utf32(T##_c[B])); \
575 count_error(); \
576 } \
577 } while(0)
578 unt_check(NFD, 3, 1);
579 unt_check(NFD, 3, 2);
580 unt_check(NFD, 3, 3);
581 unt_check(NFD, 5, 4);
582 unt_check(NFD, 5, 5);
583 unt_check(NFKD, 5, 1);
584 unt_check(NFKD, 5, 2);
585 unt_check(NFKD, 5, 3);
586 unt_check(NFKD, 5, 4);
587 unt_check(NFKD, 5, 5);
588 for(cn = 1; cn <= 5; ++cn) {
589 xfree(NFD_c[cn]);
590 xfree(NFKD_c[cn]);
591 }
592 xfree(l);
593 }
594 fclose(fp);
595 breaktest("auxiliary/GraphemeBreakTest.txt", utf32_is_grapheme_boundary);
596 breaktest("auxiliary/WordBreakTest.txt", utf32_is_word_boundary);
597}
598
599int main(void) {
600 fail_first = !!getenv("FAIL_FIRST");
601 insist('\n' == 0x0A);
602 insist('\r' == 0x0D);
603 insist(' ' == 0x20);
604 insist('0' == 0x30);
605 insist('9' == 0x39);
606 insist('A' == 0x41);
607 insist('Z' == 0x5A);
608 insist('a' == 0x61);
609 insist('z' == 0x7A);
610 /* addr.c */
611 /* asprintf.c */
612 /* authhash.c */
613 /* basen.c */
614 /* charset.c */
615 /* client.c */
616 /* configuration.c */
617 /* event.c */
618 /* fprintf.c */
619 /* heap.c */
620 test_heap();
621 /* hex.c */
622 test_hex();
623 /* inputline.c */
624 /* kvp.c */
625 /* log.c */
626 /* mem.c */
627 /* mime.c */
628 test_mime();
629 /* mixer.c */
630 /* plugin.c */
631 /* printf.c */
632 /* queue.c */
633 /* sink.c */
634 /* snprintf.c */
635 /* split.c */
636 /* syscalls.c */
637 /* table.c */
638 /* unicode.c */
639 test_unicode();
640 /* utf8.c */
641 test_utf8();
642 /* vector.c */
643 /* words.c */
644 test_casefold();
645 /* XXX words() */
646 /* wstat.c */
647 fprintf(stderr, "%d errors out of %d tests\n", errors, tests);
648 return !!errors;
649}
650
651/*
652Local Variables:
653c-basic-offset:2
654comment-column:40
655fill-column:79
656indent-tabs-mode:nil
657End:
658*/