summaryrefslogtreecommitdiff
path: root/src/test/ssl
diff options
context:
space:
mode:
authorPeter Eisentraut2018-01-19 17:17:35 +0000
committerPeter Eisentraut2018-01-23 12:11:38 +0000
commitf5da5683a86e9fc42fdf3eae2da8b096bda76a8a (patch)
treeac6b791742ae4894bf4758427cf64188a78628fa /src/test/ssl
parentb3f8401205afdaf63cb20dc316d44644c933d5a1 (diff)
Add installcheck support to more test suites
Several of the test suites under src/test/ were missing an installcheck target.
Diffstat (limited to 'src/test/ssl')
-rw-r--r--src/test/ssl/Makefile3
-rw-r--r--src/test/ssl/README13
2 files changed, 12 insertions, 4 deletions
diff --git a/src/test/ssl/Makefile b/src/test/ssl/Makefile
index 4886e901d0d..4e9095529af 100644
--- a/src/test/ssl/Makefile
+++ b/src/test/ssl/Makefile
@@ -132,3 +132,6 @@ clean distclean maintainer-clean:
check:
$(prove_check)
+
+installcheck:
+ $(prove_installcheck)
diff --git a/src/test/ssl/README b/src/test/ssl/README
index 50fa14e287e..0be06e755cf 100644
--- a/src/test/ssl/README
+++ b/src/test/ssl/README
@@ -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
============