]> git.ipfire.org Git - thirdparty/postgresql.git/commit
Add a new helper function wait_for_file() to Utils.pm.
authorFujii Masao <fujii@postgresql.org>
Fri, 16 Jan 2026 03:35:56 +0000 (12:35 +0900)
committerFujii Masao <fujii@postgresql.org>
Fri, 16 Jan 2026 03:35:56 +0000 (12:35 +0900)
commit0b10969db610c607227b23710d556b595d7eb34a
tree0d4c77c93ad71302008cfe3072e21817929d1dc8
parent41cbdab0ab6d04e8ec42d10335ef9635eb9c2c67
Add a new helper function wait_for_file() to Utils.pm.

wait_for_file() waits for the contents of a specified file, starting at an
optional offset, to match a given regular expression. If no offset is
provided, the entire file is checked. The function times out after
$PostgreSQL::Test::Utils::timeout_default seconds. It returns the total
file length on success.

The existing wait_for_log() function contains almost identical logic, but
is limited to reading the cluster's log file. This commit also refactors
wait_for_log() to call wait_for_file() instead, avoiding code duplication.

This helper will be used by upcoming changes.

Suggested-by: Mircea Cadariu <cadariu.mircea@gmail.com>
Author: Fujii Masao <masao.fujii@gmail.com>
Reviewed-by: Mircea Cadariu <cadariu.mircea@gmail.com>
Reviewed-by: Chao Li <li.evan.chao@gmail.com>
Discussion: https://postgr.es/m/CAHGQGwFeTymZQ7RLvMU6WuDGar8bUQCazg=VOfA-9GeBkg-FzA@mail.gmail.com
src/test/perl/PostgreSQL/Test/Cluster.pm
src/test/perl/PostgreSQL/Test/Utils.pm