diff options
author | Heikki Linnakangas | 2024-11-04 12:09:38 +0000 |
---|---|---|
committer | Heikki Linnakangas | 2024-11-04 12:09:38 +0000 |
commit | 99b937a44f087c133c4db42e1bf4a8990ea417b9 (patch) | |
tree | 004f23c0da8888acb692e107244169308c1709ee /configure.ac | |
parent | 3d1aec225ac4a1199079150dabfd0d34c5054127 (diff) |
Add PG_TEST_EXTRA configure option to the Make builds
The Meson builds have PG_TEST_EXTRA as a configure-time variable,
which was not available in the Make builds. To ensure both build
systems are in sync, PG_TEST_EXTRA is now added as a configure-time
variable. It can be set like this:
./configure PG_TEST_EXTRA="kerberos, ssl, ..."
Note that to preserve the old behavior, this configure-time variable
is overridden by the PG_TEST_EXTRA environment variable when you run
the tests.
Author: Jacob Champion
Reviewed by: Ashutosh Bapat, Nazir Bilal Yavuz
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 3c89b54bf12..3992694dacc 100644 --- a/configure.ac +++ b/configure.ac @@ -236,6 +236,8 @@ AC_SUBST(enable_dtrace) PGAC_ARG_BOOL(enable, tap-tests, no, [enable TAP tests (requires Perl and IPC::Run)]) AC_SUBST(enable_tap_tests) +AC_ARG_VAR(PG_TEST_EXTRA, + [enable selected extra tests (overridden at runtime by PG_TEST_EXTRA environment variable)]) # # Injection points |