diff options
author | Marcus Boerger <helly@php.net> | 2003-04-05 12:16:29 +0000 |
---|---|---|
committer | Marcus Boerger <helly@php.net> | 2003-04-05 12:16:29 +0000 |
commit | f97f219fa789f153349c58f53fc95f2533c57599 (patch) | |
tree | 5d6294f5ede15baf48b6c4526d7cd27bfe8765be /run-tests.php | |
parent | 5145d17fde7f838a142ee34f7922346fa359881f (diff) | |
download | php-git-f97f219fa789f153349c58f53fc95f2533c57599.tar.gz |
Include ldd output
Diffstat (limited to 'run-tests.php')
-rwxr-xr-x | run-tests.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/run-tests.php b/run-tests.php index 56345c916f..e559f39561 100755 --- a/run-tests.php +++ b/run-tests.php @@ -384,7 +384,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'); @@ -401,12 +401,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)) { |