Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit f5da568

Browse files
committed
Add installcheck support to more test suites
Several of the test suites under src/test/ were missing an installcheck target.
1 parent b3f8401 commit f5da568

File tree

10 files changed

+46
-9
lines changed

10 files changed

+46
-9
lines changed

src/test/authentication/Makefile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,8 @@ include $(top_builddir)/src/Makefile.global
1616
check:
1717
$(prove_check)
1818

19+
installcheck:
20+
$(prove_installcheck)
21+
1922
clean distclean maintainer-clean:
2023
rm -rf tmp_check

src/test/authentication/README

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,8 @@ Running the tests
1313

1414
make check
1515

16+
or
17+
18+
make installcheck
19+
1620
NOTE: This requires the --enable-tap-tests argument to configure.

src/test/ldap/Makefile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,8 @@ include $(top_builddir)/src/Makefile.global
1616
check:
1717
$(prove_check)
1818

19+
installcheck:
20+
$(prove_installcheck)
21+
1922
clean distclean maintainer-clean:
2023
rm -rf tmp_check

src/test/ldap/README

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,7 @@ Running the tests
1818
=================
1919

2020
make check
21+
22+
or
23+
24+
make installcheck

src/test/recovery/Makefile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,8 @@ include $(top_builddir)/src/Makefile.global
1818
check:
1919
$(prove_check)
2020

21+
installcheck:
22+
$(prove_installcheck)
23+
2124
clean distclean maintainer-clean:
2225
rm -rf tmp_check

src/test/recovery/README

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,12 @@ Running the tests
1010

1111
make check
1212

13-
NOTE: This creates a temporary installation, and some tests may
14-
create one or multiple nodes, be they master or standby(s) for the
15-
purpose of the tests.
13+
or
14+
15+
make installcheck
16+
17+
NOTE: This creates a temporary installation (in the case of "check"),
18+
and some tests may create one or multiple nodes, be they master or
19+
standby(s) for the purpose of the tests.
1620

1721
NOTE: This requires the --enable-tap-tests argument to configure.

src/test/ssl/Makefile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -132,3 +132,6 @@ clean distclean maintainer-clean:
132132

133133
check:
134134
$(prove_check)
135+
136+
installcheck:
137+
$(prove_installcheck)

src/test/ssl/README

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,15 @@ Running the tests
1212

1313
make check
1414

15-
NOTE: This creates a temporary installation, and sets it up to listen for TCP
16-
connections on localhost. Any user on the same host is allowed to log in to
17-
the test installation while the tests are running. Do not run this suite
18-
on a multi-user system where you don't trust all local users!
15+
or
16+
17+
make installcheck
18+
19+
NOTE: This creates a temporary installation (in the case of "check"),
20+
and sets it up to listen for TCP connections on localhost. Any user on
21+
the same host is allowed to log in to the test installation while the
22+
tests are running. Do not run this suite on a multi-user system where
23+
you don't trust all local users!
1924

2025
Certificates
2126
============

src/test/subscription/Makefile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,8 @@ EXTRA_INSTALL = contrib/hstore
1818
check:
1919
$(prove_check)
2020

21+
installcheck:
22+
$(prove_installcheck)
23+
2124
clean distclean maintainer-clean:
2225
rm -rf tmp_check

src/test/subscription/README

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,12 @@ Running the tests
1010

1111
make check
1212

13-
NOTE: This creates a temporary installation, and some tests may
14-
create one or multiple nodes, for the purpose of the tests.
13+
or
14+
15+
make installcheck
16+
17+
NOTE: This creates a temporary installation (in the case of "check"),
18+
and some tests may create one or multiple nodes, for the purpose of
19+
the tests.
1520

1621
NOTE: This requires the --enable-tap-tests argument to configure.

0 commit comments

Comments
 (0)