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.
52 lines
1.2 KiB
52 lines
1.2 KiB
if conf_data.get('HAVE_FASTCGI_H') or conf_data.get('HAVE_FASTCGI_FASTCGI_H') |
|
libfcgi = compiler.find_library('fcgi', required: false) |
|
if libfcgi.found() |
|
executable('fcgi-auth', |
|
sources: 'fcgi-auth.c', |
|
dependencies: common_flags + [ libfcgi ], |
|
) |
|
executable('fcgi-responder', |
|
sources: 'fcgi-responder.c', |
|
dependencies: common_flags + [ libfcgi ], |
|
) |
|
endif |
|
endif |
|
|
|
executable('scgi-responder', |
|
sources: 'scgi-responder.c', |
|
dependencies: common_flags, |
|
) |
|
|
|
env = environment() |
|
env.set('srcdir', meson.current_source_dir()) |
|
env.set('top_builddir', meson.build_root()) |
|
|
|
tests = [ |
|
'cachable.t', |
|
'core-404-handler.t', |
|
'core-condition.t', |
|
'core-keepalive.t', |
|
'core-request.t', |
|
'core-response.t', |
|
'core-var-include.t', |
|
'lowercase.t', |
|
'mod-auth.t', |
|
'mod-cgi.t', |
|
'mod-compress.t', |
|
'mod-extforward.t', |
|
'mod-fastcgi.t', |
|
'mod-proxy.t', |
|
'mod-secdownload.t', |
|
'mod-setenv.t', |
|
'mod-ssi.t', |
|
'mod-userdir.t', |
|
'request.t', |
|
'symlink.t', |
|
] |
|
|
|
# just hope it will run the tests in the given order |
|
test('prepare', find_program('./prepare.sh'), env: env, is_parallel: false) |
|
foreach t: tests |
|
test(t, find_program('./' + t), env: env, is_parallel: false) |
|
endforeach |
|
test('cleanup', find_program('./cleanup.sh'), env: env, is_parallel: false)
|
|
|