sander Mon Oct 7 11:16:48 2002 EDT
Modified files:
/php4 run-tests.php
Log:
Temporary (?) workaround (?) for is_executable() on Windows.
Index: php4/run-tests.php
diff -u php4/run-tests.php:1.61 php4/run-tests.php:1.62
--- php4/run-tests.php:1.61 Sun Oct 6 20:05:20 2002
+++ php4/run-tests.php Mon Oct 7 11:16:47 2002
@@ -74,7 +74,7 @@
$log_format = 'LEOD';
}
-if (!@is_executable($php)) {
+if (function_exists('is_executable') && !@is_executable($php)) {
error("invalid PHP executable specified by TEST_PHP_EXECUTABLE = " . $php);
}
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php