From: Alvaro Herrera <alvherre@alvh.no-ip.org>
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: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a2983cfd9d64d352c68431010b2525daf2b8bc79;p=postgresql

Fix broken subroutine call in TestLib

Michael Paquier
---

diff --git a/src/test/perl/TestLib.pm b/src/test/perl/TestLib.pm
index af46dc8c7a..7edd4c40ea 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