pgsql: Add PG_TEST_EXTRA to control optional test suites

From: Peter Eisentraut <peter_e(at)gmx(dot)net>
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Add PG_TEST_EXTRA to control optional test suites
Date: 2018-03-03 06:41:56
Message-ID: E1es0rk-0002s7-UA@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Add PG_TEST_EXTRA to control optional test suites

The SSL and LDAP test suites are not run by default, as they are not
secure for multi-user environments. This commit adds an extra make
variable to optionally enable them, for example:

make check-world PG_TEST_EXTRA='ldap ssl'

Author: Michael Paquier <michael(at)paquier(dot)xyz>

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/fdb34824e01d14e21566806ea37e974ac61ef1a4

Modified Files
--------------
configure | 2 ++
configure.in | 1 +
doc/src/sgml/regress.sgml | 38 ++++++++++++++++++++++++++++++++++++++
src/Makefile.global.in | 1 +
src/test/Makefile | 24 +++++++++++++++++++-----
5 files changed, 61 insertions(+), 5 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Noah Misch 2018-03-03 08:00:21 Re: pgsql: Fix msvc builds for ActivePerl > 5.24
Previous Message Tom Lane 2018-03-03 01:19:06 Re: [COMMITTERS] pgsql: Add much-more-extensive TAP tests for pgbench.