You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lighttpd1.4/src/t/test_mod.c

29 lines
576 B
C

#include "first.h"
#undef NDEBUG
#include <assert.h>
void test_mod_access (void);
void test_mod_alias (void);
void test_mod_evasive (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() {
test_mod_access();
test_mod_alias();
test_mod_evasive();
test_mod_evhost();
test_mod_indexfile();
test_mod_simple_vhost();
test_mod_ssi();
test_mod_staticfile();
test_mod_userdir();
return 0;
}