From bdd3fbf67a8b670cfa2555e97432bf6ebfe5ad32 Mon Sep 17 00:00:00 2001 From: Marcus Boerger Date: Sat, 5 Apr 2003 12:19:56 +0000 Subject: [PATCH] MFH: Include ldd output --- run-tests.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/run-tests.php b/run-tests.php index dbf85d950d..f8d733c123 100755 --- a/run-tests.php +++ b/run-tests.php @@ -373,7 +373,7 @@ if (!getenv('NO_INTERACTION')) { $failed_tests_data .= "\n" . $sep . 'BUILD ENVIRONMENT' . $sep; $failed_tests_data .= "OS:\n". PHP_OS. "\n\n"; - $automake = $autoconf = $libtool = $compiler = 'N/A'; + $ldd = $automake = $autoconf = $libtool = $compiler = 'N/A'; if (substr(PHP_OS, 0, 3) != "WIN") { $automake = shell_exec('automake --version'); @@ -390,12 +390,14 @@ if (!getenv('NO_INTERACTION')) { break; } } + $ldd = shell_exec("ldd $php"); } $failed_tests_data .= "Automake:\n$automake\n"; $failed_tests_data .= "Autoconf:\n$autoconf\n"; $failed_tests_data .= "Libtool:\n$libtool\n"; $failed_tests_data .= "Compiler:\n$compiler\n"; $failed_tests_data .= "Bison:\n". @shell_exec('bison --version'). "\n"; + $failed_tests_data .= "Libraries:\n$ldd\n"; $failed_tests_data .= "\n"; if (isset($user_email)) { -- 2.50.1