diff --git a/src/test/recovery/t/013_crash_restart.pl b/src/test/recovery/t/013_crash_restart.pl index c928e9201e..f81ccce1e3 100644 --- a/src/test/recovery/t/013_crash_restart.pl +++ b/src/test/recovery/t/013_crash_restart.pl @@ -115,7 +115,7 @@ SELECT 1; ok( pump_until( $killme, \$killme_stderr, - qr/WARNING: terminating connection because of crash of another server process|server closed the connection unexpectedly/m + qr/WARNING: terminating connection because of crash of another server process|server closed the connection unexpectedly|connection to server was lost/m ), "psql query died successfully after SIGQUIT"); $killme_stderr = ''; @@ -128,7 +128,7 @@ $killme->finish; ok( pump_until( $monitor, \$monitor_stderr, - qr/WARNING: terminating connection because of crash of another server process|server closed the connection unexpectedly/m + qr/WARNING: terminating connection because of crash of another server process|server closed the connection unexpectedly|connection to server was lost/m ), "psql monitor died successfully after SIGQUIT"); $monitor->finish; @@ -197,7 +197,7 @@ SELECT 1; ]; ok( pump_until( $killme, \$killme_stderr, - qr/server closed the connection unexpectedly/m), + qr/server closed the connection unexpectedly|connection to server was lost/m), "psql query died successfully after SIGKILL"); $killme->finish; @@ -207,7 +207,7 @@ $killme->finish; ok( pump_until( $monitor, \$monitor_stderr, - qr/WARNING: terminating connection because of crash of another server process|server closed the connection unexpectedly/m + qr/WARNING: terminating connection because of crash of another server process|server closed the connection unexpectedly|connection to server was lost/m ), "psql monitor died successfully after SIGKILL"); $monitor->finish;