Doc: make src/test/*/README match current reality.
authorTom Lane <tgl@sss.pgh.pa.us>
Tue, 7 Feb 2023 19:30:30 +0000 (14:30 -0500)
committerTom Lane <tgl@sss.pgh.pa.us>
Tue, 7 Feb 2023 19:30:30 +0000 (14:30 -0500)
Commit c3382a3c3, which moved the implementation of PG_TEST_EXTRA
from src/test/Makefile into individual test scripts, broke the
directions given in the subdirectory README files about how to run
these tests by hand.  Update.  Also mention wal_consistency_checking
in recovery/README --- that omission isn't the fault of c3382a3c3,
but it's still an omission.

src/test/kerberos/README
src/test/ldap/README
src/test/recovery/README
src/test/ssl/README

index df7aad55ef5e1dd6e556b82d43f0b7f05c3a3a60..72ae519dea7f02d8b3584f3196542d2fe0c943c5 100644 (file)
@@ -21,9 +21,9 @@ Running the tests
 NOTE: You must have given the --enable-tap-tests argument to configure.
 
 Run
-    make check
+    make check PG_TEST_EXTRA=kerberos
 or
-    make installcheck
+    make installcheck PG_TEST_EXTRA=kerberos
 You can use "make installcheck" if you previously did "make install".
 In that case, the code in the installation tree is tested.  With
 "make check", a temporary installation tree is built from the current
index d869f66ebfc2f260453de76187bb9b059d99f719..8125f6fa5cf98be34bfeb30f447dfce5d0c9e1fe 100644 (file)
@@ -20,9 +20,9 @@ Running the tests
 NOTE: You must have given the --enable-tap-tests argument to configure.
 
 Run
-    make check
+    make check PG_TEST_EXTRA=ldap
 or
-    make installcheck
+    make installcheck PG_TEST_EXTRA=ldap
 You can use "make installcheck" if you previously did "make install".
 In that case, the code in the installation tree is tested.  With
 "make check", a temporary installation tree is built from the current
index da1167969f70aea9530e32ad3cce86f1dfa2e05a..3ae3758d3b8fdb18481e340833bcc20ed4ce7ce2 100644 (file)
@@ -24,4 +24,9 @@ sources and then tested.
 Either way, this test initializes, starts, and stops several test Postgres
 clusters.
 
+If you want to test WAL consistency checking, add
+PG_TEST_EXTRA=wal_consistency_checking
+to the "make" command.  This is resource-intensive, so it's not done
+by default.
+
 See src/test/perl/README for more info about running these tests.
index 287b512dc2a697092ce643fe527c80cf90dc7350..b328203c7c25b1a962a675cb4d7d148df7e83d21 100644 (file)
@@ -20,9 +20,9 @@ Also, to use "make installcheck", you must have built and installed
 contrib/sslinfo in addition to the core code.
 
 Run
-    make check
+    make check PG_TEST_EXTRA=ssl
 or
-    make installcheck
+    make installcheck PG_TEST_EXTRA=ssl
 You can use "make installcheck" if you previously did "make install".
 In that case, the code in the installation tree is tested.  With
 "make check", a temporary installation tree is built from the current