xref: /lighttpd1.4/src/t/test_mod.c (revision 6516c5a2)
1 #include "first.h"
2 
3 #undef NDEBUG
4 #include <assert.h>
5 
6 void test_mod_access (void);
7 void test_mod_alias (void);
8 void test_mod_evhost (void);
9 void test_mod_indexfile (void);
10 void test_mod_simple_vhost (void);
11 void test_mod_ssi (void);
12 void test_mod_staticfile (void);
13 void test_mod_userdir (void);
14 
main(void)15 int main(void) {
16     test_mod_access();
17     test_mod_alias();
18     test_mod_evhost();
19     test_mod_indexfile();
20     test_mod_simple_vhost();
21     test_mod_ssi();
22     test_mod_staticfile();
23     test_mod_userdir();
24 
25     return 0;
26 }
27