blob: 4cda81f3bc27e73ba3b6c4093ccd1f2494956492 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# Copyright (c) 2022-2023, PostgreSQL Global Development Group
tests += {
'name': 'ssl',
'sd': meson.current_source_dir(),
'bd': meson.current_build_dir(),
'tap': {
'env': {
'with_ssl': ssl_library,
'OPENSSL': openssl.path(),
},
'tests': [
't/001_ssltests.pl',
't/002_scram.pl',
't/003_sslinfo.pl',
],
},
}
|