From: Andrew Dunstan Date: Tue, 16 Jul 2024 14:05:48 +0000 (-0400) Subject: Adjust recently added test for pg_signal_autovacuum role X-Git-Tag: REL_18_BETA1~2390 X-Git-Url: http://git.postgresql.org/gitweb/?a=commitdiff_plain;h=49546ae9c74f02dc2a0d6b5469ba0bb025ae25c2;p=postgresql.git Adjust recently added test for pg_signal_autovacuum role This test was added by commit d2b74882ca, but fails if log_error_verbosity is set to verbose. Adjust the regex that checks the error message to allow for it containing an SQL status code. --- diff --git a/src/test/modules/test_misc/t/006_signal_autovacuum.pl b/src/test/modules/test_misc/t/006_signal_autovacuum.pl index f37f8ff776d..51bdefe24aa 100644 --- a/src/test/modules/test_misc/t/006_signal_autovacuum.pl +++ b/src/test/modules/test_misc/t/006_signal_autovacuum.pl @@ -84,7 +84,7 @@ $node->poll_query_until('postgres', # Check that the primary server logs a FATAL indicating that autovacuum # is terminated. ok( $node->log_contains( - qr/FATAL: terminating autovacuum process due to administrator command/, + qr/FATAL: .*terminating autovacuum process due to administrator command/, $offset), "autovacuum worker signaled with pg_signal_autovacuum_worker granted");