blob: 7e2b6733fcc831197d70ef2b92a4abfbc61398d9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
tests += {
'name': 'kerberos',
'sd': meson.current_source_dir(),
'bd': meson.current_build_dir(),
'tap': {
'test_kwargs': {'priority': 40}, # kerberos tests are slow, start early
'tests': [
't/001_auth.pl',
],
'env': {
'with_gssapi': gssapi.found() ? 'yes' : 'no',
'with_krb_srvnam': 'postgres',
},
},
}
|