Commit f5da5683 authored by Peter Eisentraut's avatar Peter Eisentraut

Add installcheck support to more test suites

Several of the test suites under src/test/ were missing an installcheck
target.
parent b3f84012
......@@ -16,5 +16,8 @@ include $(top_builddir)/src/Makefile.global
check:
$(prove_check)
installcheck:
$(prove_installcheck)
clean distclean maintainer-clean:
rm -rf tmp_check
......@@ -13,4 +13,8 @@ Running the tests
make check
or
make installcheck
NOTE: This requires the --enable-tap-tests argument to configure.
......@@ -16,5 +16,8 @@ include $(top_builddir)/src/Makefile.global
check:
$(prove_check)
installcheck:
$(prove_installcheck)
clean distclean maintainer-clean:
rm -rf tmp_check
......@@ -18,3 +18,7 @@ Running the tests
=================
make check
or
make installcheck
......@@ -18,5 +18,8 @@ include $(top_builddir)/src/Makefile.global
check:
$(prove_check)
installcheck:
$(prove_installcheck)
clean distclean maintainer-clean:
rm -rf tmp_check
......@@ -10,8 +10,12 @@ Running the tests
make check
NOTE: This creates a temporary installation, and some tests may
create one or multiple nodes, be they master or standby(s) for the
purpose of the tests.
or
make installcheck
NOTE: This creates a temporary installation (in the case of "check"),
and some tests may create one or multiple nodes, be they master or
standby(s) for the purpose of the tests.
NOTE: This requires the --enable-tap-tests argument to configure.
......@@ -132,3 +132,6 @@ clean distclean maintainer-clean:
check:
$(prove_check)
installcheck:
$(prove_installcheck)
......@@ -12,10 +12,15 @@ Running the tests
make check
NOTE: This creates a temporary installation, and sets it up to listen for TCP
connections on localhost. Any user on the same host is allowed to log in to
the test installation while the tests are running. Do not run this suite
on a multi-user system where you don't trust all local users!
or
make installcheck
NOTE: This creates a temporary installation (in the case of "check"),
and sets it up to listen for TCP connections on localhost. Any user on
the same host is allowed to log in to the test installation while the
tests are running. Do not run this suite on a multi-user system where
you don't trust all local users!
Certificates
============
......
......@@ -18,5 +18,8 @@ EXTRA_INSTALL = contrib/hstore
check:
$(prove_check)
installcheck:
$(prove_installcheck)
clean distclean maintainer-clean:
rm -rf tmp_check
......@@ -10,7 +10,12 @@ Running the tests
make check
NOTE: This creates a temporary installation, and some tests may
create one or multiple nodes, for the purpose of the tests.
or
make installcheck
NOTE: This creates a temporary installation (in the case of "check"),
and some tests may create one or multiple nodes, for the purpose of
the tests.
NOTE: This requires the --enable-tap-tests argument to configure.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment