From af01ef874170900019b5173d443d5ccb9d589f0a Mon Sep 17 00:00:00 2001 From: Peter Kokot Date: Sun, 27 May 2018 07:40:09 +0200 Subject: Remove unused binary_pipes option Option binary_pipes was added in PHP 6 which was then refactored and this option was removed. --- run-tests.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'run-tests.php') 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; -- cgit v1.2.1