diff options
| author | Bruce Momjian <bruce@momjian.us> | 2013-12-04 10:14:45 -0500 |
|---|---|---|
| committer | Bruce Momjian <bruce@momjian.us> | 2013-12-04 10:14:45 -0500 |
| commit | 86ef4796f5120c55d1a48cfab52e51df8ed271b5 (patch) | |
| tree | 0c105e9d747e6a6502ef0fc625c676be0f3e5577 /src/test/isolation/Makefile | |
| parent | 5043fc8251fa272177c69b86a8df2cb79d926521 (diff) | |
| download | postgresql-86ef4796f5120c55d1a48cfab52e51df8ed271b5.tar.gz | |
build: pass EXTRA_REGRESS_OPTS to secondary regression tests
Christoph Berg
Diffstat (limited to 'src/test/isolation/Makefile')
| -rw-r--r-- | src/test/isolation/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/test/isolation/Makefile b/src/test/isolation/Makefile index 5e5c9bb74e..26bcf22392 100644 --- a/src/test/isolation/Makefile +++ b/src/test/isolation/Makefile @@ -52,17 +52,17 @@ maintainer-clean: distclean rm -f specparse.c specscanner.c installcheck: all - ./pg_isolation_regress --psqldir='$(PSQLDIR)' --inputdir=$(srcdir) --schedule=$(srcdir)/isolation_schedule + ./pg_isolation_regress --psqldir='$(PSQLDIR)' $(EXTRA_REGRESS_OPTS) --inputdir=$(srcdir) --schedule=$(srcdir)/isolation_schedule check: all - ./pg_isolation_regress --temp-install=./tmp_check --inputdir=$(srcdir) --top-builddir=$(top_builddir) --schedule=$(srcdir)/isolation_schedule + ./pg_isolation_regress --temp-install=./tmp_check --inputdir=$(srcdir) --top-builddir=$(top_builddir) $(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, # via TEMP_CONFIG for the check case, or via the postgresql.conf for the # installcheck case. installcheck-prepared-txns: all - ./pg_isolation_regress --psqldir='$(PSQLDIR)' --inputdir=$(srcdir) --schedule=$(srcdir)/isolation_schedule prepared-transactions + ./pg_isolation_regress --psqldir='$(PSQLDIR)' $(EXTRA_REGRESS_OPTS) --inputdir=$(srcdir) --schedule=$(srcdir)/isolation_schedule prepared-transactions check-prepared-txns: all - ./pg_isolation_regress --temp-install=./tmp_check --inputdir=$(srcdir) --top-builddir=$(top_builddir) --schedule=$(srcdir)/isolation_schedule prepared-transactions + ./pg_isolation_regress --temp-install=./tmp_check $(EXTRA_REGRESS_OPTS) --inputdir=$(srcdir) --top-builddir=$(top_builddir) --schedule=$(srcdir)/isolation_schedule prepared-transactions |
