From: Wez Furlong Date: Wed, 23 Jul 2003 21:48:50 +0000 (+0000) Subject: Fix this test, at least for Tru 64 where 1 second it just too small an X-Git-Tag: php-4.3.3RC2~53 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=451deb0101767fe8ec43d9f6941ccc8d0923b21d;p=php Fix this test, at least for Tru 64 where 1 second it just too small an interval for the test to succeed. --- diff --git a/ext/standard/tests/file/proc_open01.phpt b/ext/standard/tests/file/proc_open01.phpt index 39fc4e4cf6..9d004a84c6 100644 --- a/ext/standard/tests/file/proc_open01.phpt +++ b/ext/standard/tests/file/proc_open01.phpt @@ -30,7 +30,7 @@ for ($left = strlen($test_string); $left > 0;) { break; } $read_fds = array($pipes[1]); - $retval = stream_select($read_fds, $write_fds = NULL, $exp_fds = NULL, 1); + $retval = stream_select($read_fds, $write_fds = NULL, $exp_fds = NULL, 10); if ($retval === false) { print "select() failed\n"; break;