summaryrefslogtreecommitdiff
path: root/run-tests.php
diff options
context:
space:
mode:
authorMarcus Boerger <helly@php.net>2003-05-30 12:41:51 +0000
committerMarcus Boerger <helly@php.net>2003-05-30 12:41:51 +0000
commitbbc3c6089babd1a297029b56addb04b3585366eb (patch)
tree7a0c880e511badab7815683f7afa525df31eee5d /run-tests.php
parent25704f07536f80ba8c721efe6ef895777bb4724e (diff)
downloadphp-git-bbc3c6089babd1a297029b56addb04b3585366eb.tar.gz
Add php_uname() to output
Diffstat (limited to 'run-tests.php')
-rwxr-xr-xrun-tests.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/run-tests.php b/run-tests.php
index 46191527b7..bc2193ad3d 100755
--- a/run-tests.php
+++ b/run-tests.php
@@ -152,7 +152,7 @@ $php_info = '<?php echo "
PHP_SAPI : " . PHP_SAPI . "
PHP_VERSION : " . phpversion() . "
ZEND_VERSION: " . zend_version() . "
-PHP_OS : " . PHP_OS . "
+PHP_OS : " . PHP_OS . " - " . php_uname() . "
INI actual : " . realpath(get_cfg_var("cfg_file_path")) . "
More .INIs : " . (function_exists(\'php_ini_scanned_files\') ? str_replace("\n","", php_ini_scanned_files()) : "** not determined **"); ?>';
save_text($info_file, $php_info);
@@ -448,7 +448,7 @@ if (!getenv('NO_INTERACTION')) {
}
$failed_tests_data .= "\n" . $sep . 'BUILD ENVIRONMENT' . $sep;
- $failed_tests_data .= "OS:\n". PHP_OS. "\n\n";
+ $failed_tests_data .= "OS:\n" . PHP_OS . " - " . php_uname() . "\n\n";
$ldd = $automake = $autoconf = $libtool = $compiler = 'N/A';
if (substr(PHP_OS, 0, 3) != "WIN") {