mirror of
https://github.com/postgres/postgres.git
synced 2025-07-02 09:02:37 +03:00
Respect TEMP_CONFIG when pg_regress_check and friends are called
This reverts commit 9117985b6b
in favor of
a more general solution.
This commit is contained in:
@ -55,7 +55,7 @@ installcheck: all
|
||||
./pg_isolation_regress --bindir='$(bindir)' $(EXTRA_REGRESS_OPTS) --inputdir=$(srcdir) --schedule=$(srcdir)/isolation_schedule
|
||||
|
||||
check: all
|
||||
$(with_temp_install) ./pg_isolation_regress --temp-instance=./tmp_check --inputdir=$(srcdir) --bindir= $(EXTRA_REGRESS_OPTS) --schedule=$(srcdir)/isolation_schedule
|
||||
$(with_temp_install) ./pg_isolation_regress --temp-instance=./tmp_check $(TEMP_CONF) --inputdir=$(srcdir) --bindir= $(EXTRA_REGRESS_OPTS) --schedule=$(srcdir)/isolation_schedule
|
||||
|
||||
# Versions of the check tests that include the prepared_transactions test
|
||||
# It only makes sense to run these if set up to use prepared transactions,
|
||||
@ -65,4 +65,4 @@ installcheck-prepared-txns: all temp-install
|
||||
./pg_isolation_regress --bindir='$(bindir)' $(EXTRA_REGRESS_OPTS) --inputdir=$(srcdir) --schedule=$(srcdir)/isolation_schedule prepared-transactions
|
||||
|
||||
check-prepared-txns: all temp-install
|
||||
./pg_isolation_regress --temp-instance=./tmp_check $(EXTRA_REGRESS_OPTS) --inputdir=$(srcdir) --schedule=$(srcdir)/isolation_schedule prepared-transactions
|
||||
./pg_isolation_regress --temp-instance=./tmp_check $(TEMP_CONF) $(EXTRA_REGRESS_OPTS) --inputdir=$(srcdir) --schedule=$(srcdir)/isolation_schedule prepared-transactions
|
||||
|
@ -17,12 +17,6 @@ subdir = src/test/regress
|
||||
top_builddir = ../../..
|
||||
include $(top_builddir)/src/Makefile.global
|
||||
|
||||
# file with extra config for temp build
|
||||
TEMP_CONF =
|
||||
ifdef TEMP_CONFIG
|
||||
TEMP_CONF += --temp-config=$(TEMP_CONFIG)
|
||||
endif
|
||||
|
||||
# maximum simultaneous connections for parallel tests
|
||||
MAXCONNOPT =
|
||||
ifdef MAX_CONNECTIONS
|
||||
@ -131,10 +125,10 @@ tablespace-setup:
|
||||
REGRESS_OPTS = --dlpath=. $(EXTRA_REGRESS_OPTS)
|
||||
|
||||
check: all tablespace-setup
|
||||
$(pg_regress_check) $(REGRESS_OPTS) --schedule=$(srcdir)/parallel_schedule $(MAXCONNOPT) $(TEMP_CONF) $(EXTRA_TESTS)
|
||||
$(pg_regress_check) $(REGRESS_OPTS) --schedule=$(srcdir)/parallel_schedule $(MAXCONNOPT) $(EXTRA_TESTS)
|
||||
|
||||
check-tests: all tablespace-setup
|
||||
$(pg_regress_check) $(REGRESS_OPTS) $(MAXCONNOPT) $(TEMP_CONF) $(TESTS) $(EXTRA_TESTS)
|
||||
$(pg_regress_check) $(REGRESS_OPTS) $(MAXCONNOPT) $(TESTS) $(EXTRA_TESTS)
|
||||
|
||||
installcheck: all tablespace-setup
|
||||
$(pg_regress_installcheck) $(REGRESS_OPTS) --schedule=$(srcdir)/serial_schedule $(EXTRA_TESTS)
|
||||
|
Reference in New Issue
Block a user