@@ -52,17 +52,17 @@ maintainer-clean: distclean
52
52
rm -f specparse.c specscanner.c
53
53
54
54
installcheck : all
55
- ./pg_isolation_regress --psqldir=' $(PSQLDIR)' --inputdir=$(srcdir ) --schedule=$(srcdir ) /isolation_schedule
55
+ ./pg_isolation_regress --psqldir=' $(PSQLDIR)' $( EXTRA_REGRESS_OPTS ) --inputdir=$(srcdir ) --schedule=$(srcdir ) /isolation_schedule
56
56
57
57
check : all
58
- ./pg_isolation_regress --temp-install=./tmp_check --inputdir=$(srcdir ) --top-builddir=$(top_builddir ) --schedule=$(srcdir ) /isolation_schedule
58
+ ./pg_isolation_regress --temp-install=./tmp_check --inputdir=$(srcdir ) --top-builddir=$(top_builddir ) $( EXTRA_REGRESS_OPTS ) --schedule=$(srcdir ) /isolation_schedule
59
59
60
60
# Versions of the check tests that include the prepared_transactions test
61
61
# It only makes sense to run these if set up to use prepared transactions,
62
62
# via TEMP_CONFIG for the check case, or via the postgresql.conf for the
63
63
# installcheck case.
64
64
installcheck-prepared-txns : all
65
- ./pg_isolation_regress --psqldir=' $(PSQLDIR)' --inputdir=$(srcdir ) --schedule=$(srcdir ) /isolation_schedule prepared-transactions
65
+ ./pg_isolation_regress --psqldir=' $(PSQLDIR)' $( EXTRA_REGRESS_OPTS ) --inputdir=$(srcdir ) --schedule=$(srcdir ) /isolation_schedule prepared-transactions
66
66
67
67
check-prepared-txns : all
68
- ./pg_isolation_regress --temp-install=./tmp_check --inputdir=$(srcdir ) --top-builddir=$(top_builddir ) --schedule=$(srcdir ) /isolation_schedule prepared-transactions
68
+ ./pg_isolation_regress --temp-install=./tmp_check$( EXTRA_REGRESS_OPTS ) --inputdir=$(srcdir ) --top-builddir=$(top_builddir ) --schedule=$(srcdir ) /isolation_schedule prepared-transactions