diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2019-05-21 23:51:19 -0400 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2019-05-21 23:51:19 -0400 |
commit | 5eb4a51cb15166392ca3ede6ec58f8f1f820ef53 (patch) | |
tree | caf643a60c769c6fb1c4e4eb7bb7bc47220ef6ef /src | |
parent | a1dc6ab465986a62b308dd1bb8da316b5ed9685a (diff) | |
download | postgresql-5eb4a51cb15166392ca3ede6ec58f8f1f820ef53.tar.gz postgresql-5eb4a51cb15166392ca3ede6ec58f8f1f820ef53.zip |
Un-break pg_upgrade regression test.
Commit 5af2e976d removed a bit too much from the test.sh invocation.
Per buildfarm.
Diffstat (limited to 'src')
-rw-r--r-- | src/bin/pg_upgrade/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/pg_upgrade/Makefile b/src/bin/pg_upgrade/Makefile index 5b322ce8261..2cb829acd59 100644 --- a/src/bin/pg_upgrade/Makefile +++ b/src/bin/pg_upgrade/Makefile @@ -45,7 +45,7 @@ clean distclean maintainer-clean: NOTSUBMAKEMAKE=$(MAKE) check: test.sh all temp-install - MAKE=$(NOTSUBMAKEMAKE) $(with_temp_install) bindir=$(abs_top_builddir)/tmp_install/$(bindir) EXTRA_REGRESS_OPTS="$(EXTRA_REGRESS_OPTS)" $(SHELL) + MAKE=$(NOTSUBMAKEMAKE) $(with_temp_install) bindir=$(abs_top_builddir)/tmp_install/$(bindir) EXTRA_REGRESS_OPTS="$(EXTRA_REGRESS_OPTS)" $(SHELL) $< # installcheck is not supported because there's no meaningful way to test # pg_upgrade against a single already-running server |