]> granicus.if.org Git - php/commitdiff
remove stderr descriptor
authorAnatol Belski <ab@php.net>
Tue, 30 Jun 2015 17:53:48 +0000 (19:53 +0200)
committerAnatol Belski <ab@php.net>
Thu, 2 Jul 2015 12:23:03 +0000 (14:23 +0200)
ext/standard/tests/streams/proc_open_bug69900.phpt

index 59fcdfdd1133990ce232607dcbc1a3d8e1dec3fb..fd04052c68a94bf4af47a3424118372fc46daafa 100644 (file)
@@ -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));