diff options
author | Nuno Lopes <nlopess@php.net> | 2007-03-02 18:54:13 +0000 |
---|---|---|
committer | Nuno Lopes <nlopess@php.net> | 2007-03-02 18:54:13 +0000 |
commit | f1d075a1027a85a75c7ed58a5025983950ab5ced (patch) | |
tree | 26b662a4d083dfe5e164e67455a960f22931afa4 | |
parent | 7b37c413849a176b198d4b35e26e93fbe1dc472e (diff) | |
download | php-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.phpt | 2 |
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; |