From: Andres Freund Date: Mon, 10 Mar 2025 23:11:32 +0000 (-0400) Subject: tests: Make postmaster/002_connection_limits deal verbose logs X-Git-Tag: REL_18_BETA1~629 X-Git-Url: http://git.postgresql.org/gitweb/?a=commitdiff_plain;h=59a1592e39fed164d4d6437d62a55aef36e866a5;p=postgresql.git tests: Make postmaster/002_connection_limits deal verbose logs When log_error_verbosity=verbose is configured the test would hand (and then fail), because of the sqlstate being added between log level and message. Make regex cope. Reported-by: Andrew Dunstan Discussion: https://postgr.es/m/c7ba6bd0-3701-43d1-9087-017777fe9cd2%40dunslane.net --- diff --git a/src/test/postmaster/t/002_connection_limits.pl b/src/test/postmaster/t/002_connection_limits.pl index fd670f3a8f5..fb89a76c005 100644 --- a/src/test/postmaster/t/002_connection_limits.pl +++ b/src/test/postmaster/t/002_connection_limits.pl @@ -66,7 +66,7 @@ sub connect_fails_wait my $log_location = -s $node->logfile; $node->connect_fails($connstr, $test_name, %params); - $node->wait_for_log(qr/DEBUG: client backend.*exited with exit code 1/, + $node->wait_for_log(qr/DEBUG: (00000: )?client backend.*exited with exit code 1/, $log_location); ok(1, "$test_name: client backend process exited"); }