From: Anatol Belski Date: Tue, 30 Jun 2015 17:53:48 +0000 (+0200) Subject: remove stderr descriptor X-Git-Tag: php-7.1.0alpha3~25^2~49 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8fed210610c977232aa27c0280135249ebbabfae;p=php remove stderr descriptor --- diff --git a/ext/standard/tests/streams/proc_open_bug69900.phpt b/ext/standard/tests/streams/proc_open_bug69900.phpt index 59fcdfdd11..fd04052c68 100644 --- a/ext/standard/tests/streams/proc_open_bug69900.phpt +++ b/ext/standard/tests/streams/proc_open_bug69900.phpt @@ -19,7 +19,7 @@ $s = fgets($in); ?>'; file_put_contents($fl, $test_content); -$descriptorspec = array(0 => array("pipe", "r"),1 => array("pipe", "w"), 2 => array("file", "error-output.txt", "a")); +$descriptorspec = array(0 => array("pipe", "r"),1 => array("pipe", "w")); $pipes = array(); $process = proc_open(PHP_BINARY.' -f ' . $fl, $descriptorspec, $pipes, NULL, NULL, array("blocking_pipes" => true));