blob: 7bf397a5457116b5ea5aa7680bf147cc9327de37 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# Copyright (c) 2022-2023, 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',
],
'env': {
'with_ldap': ldap.found() ? 'yes' : 'no',
},
},
}
|