blob: b5a18c8df2d08663c5801c5142321faa3f3014cd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# Copyright (c) 2022-2024, PostgreSQL Global Development Group
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',
},
},
}
|