helly Sat Apr 5 07:16:29 2003 EDT
Modified files:
/php4 run-tests.php
Log:
Include ldd output
Index: php4/run-tests.php
diff -u php4/run-tests.php:1.154 php4/run-tests.php:1.155
--- php4/run-tests.php:1.154 Sun Mar 30 09:38:48 2003
+++ php4/run-tests.php Sat Apr 5 07:16:29 2003
@@ -384,7 +384,7 @@
$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 @@
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)) {
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php