wez Wed Jul 23 17:48:50 2003 EDT Modified files: (Branch: PHP_4_3) /php-src/ext/standard/tests/file proc_open01.phpt Log: Fix this test, at least for Tru 64 where 1 second it just too small an interval for the test to succeed. Index: php-src/ext/standard/tests/file/proc_open01.phpt diff -u php-src/ext/standard/tests/file/proc_open01.phpt:1.1.2.3 php-src/ext/standard/tests/file/proc_open01.phpt:1.1.2.4 --- php-src/ext/standard/tests/file/proc_open01.phpt:1.1.2.3 Tue Jul 15 13:28:54 2003 +++ php-src/ext/standard/tests/file/proc_open01.phpt Wed Jul 23 17:48:50 2003 @@ -30,7 +30,7 @@ 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;
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php