]> granicus.if.org Git - postgresql/commitdiff
Add installcheck support to more test suites
authorPeter Eisentraut <peter_e@gmx.net>
Fri, 19 Jan 2018 17:17:35 +0000 (12:17 -0500)
committerPeter Eisentraut <peter_e@gmx.net>
Tue, 23 Jan 2018 12:11:38 +0000 (07:11 -0500)
Several of the test suites under src/test/ were missing an installcheck
target.

src/test/authentication/Makefile
src/test/authentication/README
src/test/ldap/Makefile
src/test/ldap/README
src/test/recovery/Makefile
src/test/recovery/README
src/test/ssl/Makefile
src/test/ssl/README
src/test/subscription/Makefile
src/test/subscription/README

index a435b13057504bf0c033c37a7600edd578a14147..218452ec764dd577e3a828e7cd464e58b9c5cfa7 100644 (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
index 5cffc7dc4913084296540decc859b674081b4f7d..dd797467538315f0fa66255cbf00881e0dcc147e 100644 (file)
@@ -13,4 +13,8 @@ Running the tests
 
     make check
 
+or
+
+    make installcheck
+
 NOTE: This requires the --enable-tap-tests argument to configure.
index 50e3c17e9512ce7dd1f463591c652b599aac76e3..fef5742b82c441c7a3b06dda42046a75442b186b 100644 (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
index 61579f87c6a3c870e9c68aa26d3ee4053d0d8da6..61578385c5fd18646954437583faec5d67713051 100644 (file)
@@ -18,3 +18,7 @@ Running the tests
 =================
 
     make check
+
+or
+
+    make installcheck
index aecf37d89acd9c223f9e2594f57cb47111e68e2f..daf79a0b1fcd7c3f322306496640d4832ae02ab6 100644 (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
index 3cafb9ddfe0b1caece8fadf409e63b713087ffee..93bdcf4fed645c1d9c2ff2ffcf6bc38d796df1b9 100644 (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.
index 4886e901d0dea281e1cc4713ffb6cf7e3faa742f..4e9095529af4afd8233699ea62c80d46fe9cd20d 100644 (file)
@@ -132,3 +132,6 @@ clean distclean maintainer-clean:
 
 check:
        $(prove_check)
+
+installcheck:
+       $(prove_installcheck)
index 50fa14e287eaaf56af733b96c40bb5ab62713100..0be06e755cf19900a8405468089bf6a36c223aba 100644 (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
 ============
index 25c48e470d7879ae33d235f22259c189d8b2273a..0f3d2098ade21ba99dfed9143bc4407f1fb355fb 100644 (file)
@@ -18,5 +18,8 @@ EXTRA_INSTALL = contrib/hstore
 check:
        $(prove_check)
 
+installcheck:
+       $(prove_installcheck)
+
 clean distclean maintainer-clean:
        rm -rf tmp_check
index e9e93755b718ad8d41f1f63f06ba025ad3f27c1e..1d50dcceedb26d72e56622a2b3c2aa017b7e84ae 100644 (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.