pgsql: Prevent port collisions between concurrent TAP tests

Поиск
Список
Период
Сортировка
От Andrew Dunstan
Тема pgsql: Prevent port collisions between concurrent TAP tests
Дата
Msg-id E1owlvJ-0005j1-1O@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Prevent port collisions between concurrent TAP tests

Currently there is a race condition where if concurrent TAP tests both
test that they can open a port they will assume that it is free and use
it, causing one of them to fail. To prevent this we record a reservation
using an exclusive lock, and any TAP test that discovers a reservation
checks to see if the reserving process is still alive, and looks for
another free port if it is.

Ports are reserved in a directory set by the environment setting
PG_TEST_PORT_DIR, or if that doesn't exist a subdirectory of the top
build directory as set by meson or Makefile.global, or its own
tmp_check directory.

The prove_check recipe in Makefile.global.in is extended to export
top_builddir to the TAP tests. This was already exported by the
prove_installcheck recipes.

Per complaint from Andres Freund

This will be backpatched in due course after some testing.

Discussion: https://postgr.es/m/20221002164931.d57hlutrcz4d2zi7@awork3.anarazel.de

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/9b4eafcaf41d1192a34b574c21262b755aa455ee

Modified Files
--------------
src/Makefile.global.in                   |  2 +-
src/test/perl/PostgreSQL/Test/Cluster.pm | 65 +++++++++++++++++++++++++++++---
2 files changed, 61 insertions(+), 6 deletions(-)


В списке pgsql-committers по дате отправления:

Предыдущее
От: Michael Paquier
Дата:
Сообщение: pgsql: Switch SQLValueFunction on "name" to use COERCE_SQL_SYNTAX
Следующее
От: Tom Lane
Дата:
Сообщение: pgsql: Fix sloppy cleanup of roles in privileges.sql.