diff options
author | Heikki Linnakangas <heikki.linnakangas@iki.fi> | 2015-07-29 20:59:24 +0300 |
---|---|---|
committer | Heikki Linnakangas <heikki.linnakangas@iki.fi> | 2015-07-29 20:59:24 +0300 |
commit | c7f0b28c7a67a8602c65d6b38d40b38d07548fbd (patch) | |
tree | d43d8caa9970e924bc32b9abc0774de369ab5c21 /src | |
parent | 342a1ffa2177c0b260b68d7891b0d04598a58432 (diff) | |
download | postgresql-c7f0b28c7a67a8602c65d6b38d40b38d07548fbd.tar.gz postgresql-c7f0b28c7a67a8602c65d6b38d40b38d07548fbd.zip |
Fix TAP tests with "make installcheck".
I neglected that the prove_installcheck rule also needs to also define
PG_REGRESS, like prove_check does.
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile.global.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile.global.in b/src/Makefile.global.in index 1704ae0d102..577299576a6 100644 --- a/src/Makefile.global.in +++ b/src/Makefile.global.in @@ -334,7 +334,7 @@ endef ifeq ($(enable_tap_tests),yes) define prove_installcheck -cd $(srcdir) && TESTDIR='$(CURDIR)' PATH="$(bindir):$$PATH" PGPORT='6$(DEF_PGPORT)' top_builddir='$(CURDIR)/$(top_builddir)' $(PROVE) $(PG_PROVE_FLAGS) $(PROVE_FLAGS) t/*.pl +cd $(srcdir) && TESTDIR='$(CURDIR)' PATH="$(bindir):$$PATH" PGPORT='6$(DEF_PGPORT)' top_builddir='$(CURDIR)/$(top_builddir)' PG_REGRESS='$(CURDIR)/$(top_builddir)/src/test/regress/pg_regress' $(PROVE) $(PG_PROVE_FLAGS) $(PROVE_FLAGS) t/*.pl endef define prove_check |