summaryrefslogtreecommitdiffstats
path: root/src/test/modules/ldap_password_func/meson.build
blob: 209b66833734f4966e24fca8e02b85fb8c08b35f (plain)
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
if not ldap.found()
  subdir_done()
endif

ldap_password_func_sources = files(
  'ldap_password_func.c',
)

if host_system == 'windows'
  ldap_password_func_sources += rc_lib_gen.process(win32ver_rc, extra_args: [
    '--NAME', 'ldap_password_func',
    '--FILEDESC', 'set hook to mutate ldapbindpasswd',])
endif

ldap_password_func = shared_module('ldap_password_func',
  ldap_password_func_sources,
  kwargs: pg_test_mod_args + {
    'dependencies': [ldap, pg_mod_args['dependencies']],
  },
)
test_install_libs += ldap_password_func

tests += {
  'name': 'ldap_password_func',
  'sd': meson.current_source_dir(),
  'bd': meson.current_build_dir(),
  'tap': {
    'tests': [
      't/001_mutated_bindpasswd.pl',
    ],
  'env': {'with_ldap': 'yes'}
  },
}