summaryrefslogtreecommitdiff
path: root/src/t/test_mod.c
blob: 8eedf47f399ed6935f2498701e9533e58c03b299 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#include "first.h"

#undef NDEBUG
#include <assert.h>

void test_mod_access (void);
void test_mod_alias (void);
void test_mod_evhost (void);
void test_mod_indexfile (void);
void test_mod_simple_vhost (void);
void test_mod_ssi (void);
void test_mod_staticfile (void);
void test_mod_userdir (void);

int main(void) {
    test_mod_access();
    test_mod_alias();
    test_mod_evhost();
    test_mod_indexfile();
    test_mod_simple_vhost();
    test_mod_ssi();
    test_mod_staticfile();
    test_mod_userdir();

    return 0;
}