From 8fed210610c977232aa27c0280135249ebbabfae Mon Sep 17 00:00:00 2001 From: Anatol Belski Date: Tue, 30 Jun 2015 19:53:48 +0200 Subject: [PATCH] remove stderr descriptor --- ext/standard/tests/streams/proc_open_bug69900.phpt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)); -- 2.50.1