xref: /lighttpd1.4/src/t/test_common.c (revision 6516c5a2)
1 #include "first.h"
2 
3 #undef NDEBUG
4 #include <assert.h>
5 
6 void test_array (void);
7 void test_base64 (void);
8 void test_buffer (void);
9 void test_burl (void);
10 void test_http_header (void);
11 void test_http_kv (void);
12 void test_keyvalue (void);
13 void test_request (void);
14 
main(void)15 int main(void) {
16     test_array();
17     test_base64();
18     test_buffer();
19     test_burl();
20     test_http_header();
21     test_http_kv();
22     test_keyvalue();
23     test_request();
24 
25     return 0;
26 }
27