postgresql/src/test/kerberos/meson.build

18 lines
416 B
Meson

# 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',
},
},
}