From 270a907bad9aadb31128495154751b0bf3bf1c59 Mon Sep 17 00:00:00 2001 From: Yasuo Ohgaki Date: Tue, 12 Mar 2002 05:33:03 +0000 Subject: [PATCH] Do not search php binary in search path, since we are not testing older builds. Print SAPI used. --- run-tests.php | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/run-tests.php b/run-tests.php index ff8626fa75..79e0f5b249 100755 --- a/run-tests.php +++ b/run-tests.php @@ -170,9 +170,10 @@ function initialize() } elseif (@is_executable("./sapi/cli/php{$ext}")) { $php = getcwd() . "/sapi/cli/php{$ext}"; } - if (empty($php)) { - $php = in_path("php", $windows_p); - } +// Test result can be bogus, if we use php binary in path. - yohgaki@php.net +// if (empty($php)) { +// $php = in_path("php", $windows_p); +// } if (empty($php)) { dowriteln("Unable to find PHP executable (php{$ext})."); dowriteln("Please build PHP as a CGI executable or make sure it is"); @@ -283,7 +284,8 @@ function do_testing($argc, &$argv) dowriteln(sprintf("Tests passed: %4d (%s%%)", $passed, $passed_pstr)); dowriteln("============================="); dowriteln("Skipped ".sizeof($skipped_extensions)." extensions."); - dowriteln("PHP Version: ".phpversion()); + dowriteln("PHP SAPI: ".PHP_SAPI); + dowriteln("PHP Version: ".PHP_VERSION); } function find_testdirs($dir = '.', $first_pass = true) -- 2.40.0