From: Wez Furlong Date: Sun, 17 Mar 2002 13:16:35 +0000 (+0000) Subject: fix problems with cgi/cli sapi when running tests X-Git-Tag: php-4.3.0dev-ZendEngine2-Preview1~1314 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b98074ee86f1b3bc7d938f12a08fe715771f8445;p=php fix problems with cgi/cli sapi when running tests --- diff --git a/run-tests.php b/run-tests.php index 0fd24ba2a7..a6797e283b 100755 --- a/run-tests.php +++ b/run-tests.php @@ -161,15 +161,21 @@ function initialize() } } - if (isset($_ENV["TOP_BUILDDIR"]) && @is_executable($_ENV["TOP_BUILDDIR"]."/php{$ext}")) { - $php = $_ENV["TOP_BUILDDIR"]."/php{$ext}"; - } elseif (isset($_ENV["TOP_BUILDDIR"]) && @is_executable($_ENV["TOP_BUILDDIR"]."/sapi/cli/php{$ext}")) { +/* Lets check for cli first, since the new build system runs the cli sapi, + and this script makes assumptions about the executeable based on things + it determines from *this* instance. If the sapis are not the same, tests + will fail due to silly things like headers not being ignored in the right + places */ + + if (isset($_ENV["TOP_BUILDDIR"]) && @is_executable($_ENV["TOP_BUILDDIR"]."/sapi/cli/php{$ext}")) { $php = $_ENV["TOP_BUILDDIR"]."/sapi/cli/php{$ext}"; - } elseif (@is_executable("./php{$ext}")) { - $php = getcwd() . "/php{$ext}"; } elseif (@is_executable("./sapi/cli/php{$ext}")) { $php = getcwd() . "/sapi/cli/php{$ext}"; - } + } elseif (isset($_ENV["TOP_BUILDDIR"]) && @is_executable($_ENV["TOP_BUILDDIR"]."/php{$ext}")) { + $php = $_ENV["TOP_BUILDDIR"]."/php{$ext}"; + } elseif (@is_executable("./php{$ext}")) { + $php = getcwd() . "/php{$ext}"; + } // Test result can be bogus, if we use php binary in path. - yohgaki@php.net // if (empty($php)) { // $php = in_path("php", $windows_p);