blob: 04c738d27580c67c916d01698242d53c8aa29a97 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# Copyright (c) 2022-2025, PostgreSQL Global Development Group
tests += {
'name': 'ldap',
'sd': meson.current_source_dir(),
'bd': meson.current_build_dir(),
'tap': {
'tests': [
't/001_auth.pl',
't/002_bindpasswd.pl',
't/003_ldap_connection_param_lookup.pl',
],
'env': {
'with_ldap': ldap.found() ? 'yes' : 'no',
},
},
}
|