From: Alvaro Herrera Date: Thu, 3 Dec 2015 02:16:22 +0000 (-0300) Subject: Fix broken subroutine call in TestLib X-Git-Tag: REL9_6_BETA1~1043 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a2983cfd9d64d352c68431010b2525daf2b8bc79;p=thirdparty%2Fpostgresql.git Fix broken subroutine call in TestLib Michael Paquier --- diff --git a/src/test/perl/TestLib.pm b/src/test/perl/TestLib.pm index af46dc8c7a2..7edd4c40eac 100644 --- a/src/test/perl/TestLib.pm +++ b/src/test/perl/TestLib.pm @@ -143,7 +143,7 @@ sub system_or_bail sub run_log { print("# Running: " . join(" ", @{ $_[0] }) . "\n"); - return run(@_); + return IPC::Run::run(@_); } sub slurp_dir