Add installcheck support to more test suites

Several of the test suites under src/test/ were missing an installcheck
target.
pull/28/merge
Peter Eisentraut 8 years ago
parent b3f8401205
commit f5da5683a8
  1. 3
      src/test/authentication/Makefile
  2. 4
      src/test/authentication/README
  3. 3
      src/test/ldap/Makefile
  4. 4
      src/test/ldap/README
  5. 3
      src/test/recovery/Makefile
  6. 10
      src/test/recovery/README
  7. 3
      src/test/ssl/Makefile
  8. 13
      src/test/ssl/README
  9. 3
      src/test/subscription/Makefile
  10. 9
      src/test/subscription/README

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

Loading…
Cancel
Save