lighttpd 1.4.x
https://www.lighttpd.net/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
472 B
25 lines
472 B
8 months ago
|
#include "first.h"
|
||
|
|
||
|
#undef NDEBUG
|
||
|
#include <assert.h>
|
||
|
|
||
|
void test_mod_access (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_evhost();
|
||
|
test_mod_indexfile();
|
||
|
test_mod_simple_vhost();
|
||
|
test_mod_ssi();
|
||
|
test_mod_staticfile();
|
||
|
test_mod_userdir();
|
||
|
|
||
|
return 0;
|
||
|
}
|