Files
postgresql/src/test/meson.build
Heikki Linnakangas 65dfe9d167 Move libpq encryption negotiation tests
The test targets libpq's options, so 'src/test/interfaces/libpq/t' is
a more natural place for it.

While doing this, I noticed that I had missed adding the
libpq_encryption subdir to the Makefile. That's why this commit only
needs to remove it from the meson.build file.

Per Peter Eisentraut's suggestion.

Discussion: https://www.postgresql.org/message-id/09d4bf5d-d0fa-4c66-a1d7-5ec757609646@eisentraut.org
2024-04-12 19:52:37 +03:00

28 lines
366 B
Meson

# Copyright (c) 2022-2024, PostgreSQL Global Development Group
subdir('regress')
subdir('isolation')
subdir('authentication')
subdir('recovery')
subdir('subscription')
subdir('modules')
if ssl.found()
subdir('ssl')
endif
if ldap.found()
subdir('ldap')
endif
if gssapi.found()
subdir('kerberos')
endif
if icu.found()
subdir('icu')
endif
subdir('perl')