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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
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)
|