Skip to content

Commit 2038bf4

Browse files
committed
Specify bindir in pg_isolation_regress_installcheck.
It appears dcae5fa forgot to add it to pg_isolation_regress_installcheck, while it was added to pg_regress_installcheck. It seems to so far have escaped notice, because buildfarm animals requiring it, didn't actually use pg_isolation_regress_installcheck anywhere - that changed with 60f826c, triggering failures on narwhal and frogmouth. I've decided to not, for now at least, backpatch this, because the relevant invocations look quite different in the back branches. Seems quite possible that we'll want to backport 60f826c as a whole if it proves stable. Discussion: https://postgr.es/m/20170315174003.3dyl4teashdwgblh@alap3.anarazel.de
1 parent bd1827c commit 2038bf4

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

src/Makefile.global.in

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -552,23 +552,27 @@ pg_regress_check = \
552552
$(top_builddir)/src/test/regress/pg_regress \
553553
--temp-instance=./tmp_check \
554554
--inputdir=$(srcdir) \
555+
--bindir= \
555556
$(TEMP_CONF) \
556-
--bindir= $(pg_regress_locale_flags) $(EXTRA_REGRESS_OPTS)
557+
$(pg_regress_locale_flags) $(EXTRA_REGRESS_OPTS)
557558
pg_regress_installcheck = \
558559
$(top_builddir)/src/test/regress/pg_regress \
559560
--inputdir=$(srcdir) \
560-
--bindir='$(bindir)' $(pg_regress_locale_flags) $(EXTRA_REGRESS_OPTS)
561+
--bindir='$(bindir)' \
562+
$(pg_regress_locale_flags) $(EXTRA_REGRESS_OPTS)
561563

562564
pg_isolation_regress_check = \
563565
$(with_temp_install) \
564566
$(top_builddir)/src/test/isolation/pg_isolation_regress \
565567
--temp-instance=./tmp_check_iso \
566568
--inputdir=$(srcdir) --outputdir=output_iso \
569+
--bindir= \
567570
$(TEMP_CONF) \
568-
--bindir= $(pg_regress_locale_flags) $(EXTRA_REGRESS_OPTS)
571+
$(pg_regress_locale_flags) $(EXTRA_REGRESS_OPTS)
569572
pg_isolation_regress_installcheck = \
570573
$(top_builddir)/src/test/isolation/pg_isolation_regress \
571574
--inputdir=$(srcdir) \
575+
--bindir='$(bindir)' \
572576
$(pg_regress_locale_flags) $(EXTRA_REGRESS_OPTS)
573577

574578
##########################################################################

0 commit comments

Comments
 (0)