diff options
author | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2015-12-02 23:16:22 -0300 |
---|---|---|
committer | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2015-12-02 23:16:22 -0300 |
commit | a2983cfd9d64d352c68431010b2525daf2b8bc79 (patch) | |
tree | b2aa38d37315949cd6a68779acd29427f8b36a4a /src | |
parent | d8ff060ecd5fc2dd20021743518d376a11a0bfd8 (diff) | |
download | postgresql-a2983cfd9d64d352c68431010b2525daf2b8bc79.tar.gz postgresql-a2983cfd9d64d352c68431010b2525daf2b8bc79.zip |
Fix broken subroutine call in TestLib
Michael Paquier
Diffstat (limited to 'src')
-rw-r--r-- | src/test/perl/TestLib.pm | 2 |
1 files changed, 1 insertions, 1 deletions
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 |