Add installcheck support to more test suites

Several of the test suites under src/test/ were missing an installcheck
target.
This commit is contained in:
Peter Eisentraut 2018-01-19 12:17:35 -05:00
parent b3f8401205
commit f5da5683a8
10 changed files with 46 additions and 9 deletions

View File

@ -16,5 +16,8 @@ include $(top_builddir)/src/Makefile.global
check:
$(prove_check)
installcheck:
$(prove_installcheck)
clean distclean maintainer-clean:
rm -rf tmp_check

View File

@ -13,4 +13,8 @@ Running the tests
make check
or
make installcheck
NOTE: This requires the --enable-tap-tests argument to configure.

View File

@ -16,5 +16,8 @@ include $(top_builddir)/src/Makefile.global
check:
$(prove_check)
installcheck:
$(prove_installcheck)
clean distclean maintainer-clean:
rm -rf tmp_check

View File

@ -18,3 +18,7 @@ Running the tests
=================
make check
or
make installcheck

View File

@ -18,5 +18,8 @@ include $(top_builddir)/src/Makefile.global
check:
$(prove_check)
installcheck:
$(prove_installcheck)
clean distclean maintainer-clean:
rm -rf tmp_check

View File

@ -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.

View File

@ -132,3 +132,6 @@ clean distclean maintainer-clean:
check:
$(prove_check)
installcheck:
$(prove_installcheck)

View File

@ -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
============

View File

@ -18,5 +18,8 @@ EXTRA_INSTALL = contrib/hstore
check:
$(prove_check)
installcheck:
$(prove_installcheck)
clean distclean maintainer-clean:
rm -rf tmp_check

View File

@ -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.