1
0
mirror of https://github.com/postgres/postgres.git synced 2025-05-28 05:21:27 +03:00

Doc: make src/test/*/README match current reality.

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.
This commit is contained in:
Tom Lane 2023-02-07 14:30:30 -05:00
parent 2cbbffff05
commit e2c78e7ab4
4 changed files with 11 additions and 6 deletions

View File

@ -21,9 +21,9 @@ Running the tests
NOTE: You must have given the --enable-tap-tests argument to configure. NOTE: You must have given the --enable-tap-tests argument to configure.
Run Run
make check make check PG_TEST_EXTRA=kerberos
or or
make installcheck make installcheck PG_TEST_EXTRA=kerberos
You can use "make installcheck" if you previously did "make install". You can use "make installcheck" if you previously did "make install".
In that case, the code in the installation tree is tested. With In that case, the code in the installation tree is tested. With
"make check", a temporary installation tree is built from the current "make check", a temporary installation tree is built from the current

View File

@ -20,9 +20,9 @@ Running the tests
NOTE: You must have given the --enable-tap-tests argument to configure. NOTE: You must have given the --enable-tap-tests argument to configure.
Run Run
make check make check PG_TEST_EXTRA=ldap
or or
make installcheck make installcheck PG_TEST_EXTRA=ldap
You can use "make installcheck" if you previously did "make install". You can use "make installcheck" if you previously did "make install".
In that case, the code in the installation tree is tested. With In that case, the code in the installation tree is tested. With
"make check", a temporary installation tree is built from the current "make check", a temporary installation tree is built from the current

View File

@ -24,4 +24,9 @@ sources and then tested.
Either way, this test initializes, starts, and stops several test Postgres Either way, this test initializes, starts, and stops several test Postgres
clusters. 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. See src/test/perl/README for more info about running these tests.

View File

@ -20,9 +20,9 @@ Also, to use "make installcheck", you must have built and installed
contrib/sslinfo in addition to the core code. contrib/sslinfo in addition to the core code.
Run Run
make check make check PG_TEST_EXTRA=ssl
or or
make installcheck make installcheck PG_TEST_EXTRA=ssl
You can use "make installcheck" if you previously did "make install". You can use "make installcheck" if you previously did "make install".
In that case, the code in the installation tree is tested. With In that case, the code in the installation tree is tested. With
"make check", a temporary installation tree is built from the current "make check", a temporary installation tree is built from the current