summaryrefslogtreecommitdiff
path: root/run-tests.php
diff options
context:
space:
mode:
authorPeter Kokot <peterkokot@gmail.com>2018-05-27 07:40:09 +0200
committerNikita Popov <nikita.ppv@gmail.com>2018-05-28 22:14:37 +0200
commitaf01ef874170900019b5173d443d5ccb9d589f0a (patch)
treeb418332fa6fde08c71c6025936c762ecb7e046b1 /run-tests.php
parentc70468b8d3c1d6711da0db84cba30d87d2482e5c (diff)
downloadphp-git-af01ef874170900019b5173d443d5ccb9d589f0a.tar.gz
Remove unused binary_pipes option
Option binary_pipes was added in PHP 6 which was then refactored and this option was removed.
Diffstat (limited to 'run-tests.php')
-rw-r--r--run-tests.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/run-tests.php b/run-tests.php
index 82918c002f..59f878dc39 100644
--- a/run-tests.php
+++ b/run-tests.php
@@ -1120,7 +1120,7 @@ function system_with_timeout($commandline, $env = null, $stdin = null, $captureS
if ($captureStdErr) {
$descriptorspec[2] = array('pipe', 'w');
}
- $proc = proc_open($commandline, $descriptorspec, $pipes, TEST_PHP_SRCDIR, $bin_env, array('suppress_errors' => true, 'binary_pipes' => true));
+ $proc = proc_open($commandline, $descriptorspec, $pipes, TEST_PHP_SRCDIR, $bin_env, array('suppress_errors' => true));
if (!$proc) {
return false;