diff options
author | Anatol Belski <ab@php.net> | 2015-06-30 19:53:48 +0200 |
---|---|---|
committer | Anatol Belski <ab@php.net> | 2015-07-02 14:23:03 +0200 |
commit | 8fed210610c977232aa27c0280135249ebbabfae (patch) | |
tree | a5bf4222ed653ec7bc0bf45a3a1cae2045ac7ece | |
parent | afd8ebca787102097abc5d1cee10c441c8623ff4 (diff) | |
download | php-git-8fed210610c977232aa27c0280135249ebbabfae.tar.gz |
remove stderr descriptor
-rw-r--r-- | ext/standard/tests/streams/proc_open_bug69900.phpt | 2 |
1 files changed, 1 insertions, 1 deletions
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)); |