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 ...@@ -16,5 +16,8 @@ include $(top_builddir)/src/Makefile.global
check: check:
$(prove_check) $(prove_check)
installcheck:
$(prove_installcheck)
clean distclean maintainer-clean: clean distclean maintainer-clean:
rm -rf tmp_check rm -rf tmp_check
...@@ -13,4 +13,8 @@ Running the tests ...@@ -13,4 +13,8 @@ Running the tests
make check make check
or
make installcheck
NOTE: This requires the --enable-tap-tests argument to configure. NOTE: This requires the --enable-tap-tests argument to configure.
...@@ -16,5 +16,8 @@ include $(top_builddir)/src/Makefile.global ...@@ -16,5 +16,8 @@ include $(top_builddir)/src/Makefile.global
check: check:
$(prove_check) $(prove_check)
installcheck:
$(prove_installcheck)
clean distclean maintainer-clean: clean distclean maintainer-clean:
rm -rf tmp_check rm -rf tmp_check
...@@ -18,3 +18,7 @@ Running the tests ...@@ -18,3 +18,7 @@ Running the tests
================= =================
make check make check
or
make installcheck
...@@ -18,5 +18,8 @@ include $(top_builddir)/src/Makefile.global ...@@ -18,5 +18,8 @@ include $(top_builddir)/src/Makefile.global
check: check:
$(prove_check) $(prove_check)
installcheck:
$(prove_installcheck)
clean distclean maintainer-clean: clean distclean maintainer-clean:
rm -rf tmp_check rm -rf tmp_check
...@@ -10,8 +10,12 @@ Running the tests ...@@ -10,8 +10,12 @@ Running the tests
make check make check
NOTE: This creates a temporary installation, and some tests may or
create one or multiple nodes, be they master or standby(s) for the
purpose of the tests. 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. NOTE: This requires the --enable-tap-tests argument to configure.
...@@ -132,3 +132,6 @@ clean distclean maintainer-clean: ...@@ -132,3 +132,6 @@ clean distclean maintainer-clean:
check: check:
$(prove_check) $(prove_check)
installcheck:
$(prove_installcheck)
...@@ -12,10 +12,15 @@ Running the tests ...@@ -12,10 +12,15 @@ Running the tests
make check make check
NOTE: This creates a temporary installation, and sets it up to listen for TCP or
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 make installcheck
on a multi-user system where you don't trust all local users!
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 Certificates
============ ============
......
...@@ -18,5 +18,8 @@ EXTRA_INSTALL = contrib/hstore ...@@ -18,5 +18,8 @@ EXTRA_INSTALL = contrib/hstore
check: check:
$(prove_check) $(prove_check)
installcheck:
$(prove_installcheck)
clean distclean maintainer-clean: clean distclean maintainer-clean:
rm -rf tmp_check rm -rf tmp_check
...@@ -10,7 +10,12 @@ Running the tests ...@@ -10,7 +10,12 @@ Running the tests
make check make check
NOTE: This creates a temporary installation, and some tests may or
create one or multiple nodes, for the purpose of the tests.
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. 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