summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNuno Lopes <nlopess@php.net>2007-03-02 18:54:13 +0000
committerNuno Lopes <nlopess@php.net>2007-03-02 18:54:13 +0000
commitf1d075a1027a85a75c7ed58a5025983950ab5ced (patch)
tree26b662a4d083dfe5e164e67455a960f22931afa4
parent7b37c413849a176b198d4b35e26e93fbe1dc472e (diff)
downloadphp-git-f1d075a1027a85a75c7ed58a5025983950ab5ced.tar.gz
increase the stream_select() timeout, to make the test pass in a slow machine with valgrind
-rw-r--r--ext/standard/tests/file/proc_open01.phpt2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/standard/tests/file/proc_open01.phpt b/ext/standard/tests/file/proc_open01.phpt
index c5b0ed971b..2c211f6167 100644
--- a/ext/standard/tests/file/proc_open01.phpt
+++ b/ext/standard/tests/file/proc_open01.phpt
@@ -32,7 +32,7 @@ for ($left = strlen($test_string); $left > 0;) {
$read_fds = array($pipes[1]);
$write_fds = NULL;
$exp_fds = NULL;
- $retval = stream_select($read_fds, $write_fds, $exp_fds, 1);
+ $retval = stream_select($read_fds, $write_fds, $exp_fds, 5);
if ($retval === false) {
print "select() failed\n";
break;