mirror of
https://github.com/postgres/postgres.git
synced 2025-05-26 18:17:33 +03:00
This commit introduces an authentication test for the peer method, as of a set of scenarios with and without a user name map. The script is automatically skipped if peer is not supported in the environment where this test is run, checking this behavior by attempting a connection first on a cluster up and running. Author: Bertrand Drouvot Discussion: https://postgr.es/m/aa60994b-1c66-ca7a-dab9-9a200dbac3d2@amazon.com
13 lines
227 B
Meson
13 lines
227 B
Meson
tests += {
|
|
'name': 'authentication',
|
|
'sd': meson.current_source_dir(),
|
|
'bd': meson.current_build_dir(),
|
|
'tap': {
|
|
'tests': [
|
|
't/001_password.pl',
|
|
't/002_saslprep.pl',
|
|
't/003_peer.pl',
|
|
],
|
|
},
|
|
}
|