Re: [PHP-DEV] using run-tests.php on windows

2002-10-07 Thread Sander Roobol
On Mon, Oct 07, 2002 at 04:37:49AM +0200, Melvyn Sopacua wrote: > Whether the function should make an effort and emit a warning for these > systems is open to debate. IMO it's good that this function isn't available on Windows - it makes no sense there anyway. I'll fix run-tests.php in a moment.

Re: [PHP-DEV] using run-tests.php on windows

2002-10-06 Thread Melvyn Sopacua
Hey David, [EMAIL PROTECTED] ~/cvs/php4/ext/standard $ grep -2 is_executable ./php_filestat.h PHP_FUNCTION(is_readable); #ifndef PHP_WIN32 PHP_FUNCTION(is_executable); #endif PHP_FUNCTION(is_file); Seems it is disabled for WIN32, which makes sence, since every file on a windows machine, is by d

[PHP-DEV] using run-tests.php on windows

2002-10-06 Thread David Viner
hi, i'm trying to get the php tests to run on my windows 2k machine, and having a lot of trouble. i seem to fail at this line: if (@!is_executable($php)) { error("invalid PHP executable specified by TEST_PHP_EXECUTABLE = " . $php); } I removed the '@' to see what was happening,