summaryrefslogtreecommitdiff
path: root/src/test/kerberos/meson.build
blob: 509e9935585006bd43a86d72cacff62b1794d245 (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': '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',
    },
  },
}