diff options
author | Derick Rethans <derick@php.net> | 2002-10-23 20:13:42 +0000 |
---|---|---|
committer | Derick Rethans <derick@php.net> | 2002-10-23 20:13:42 +0000 |
commit | 6a1f477be9dd7484eb49b9a68efb7c0954c87815 (patch) | |
tree | 6b837030a62277d8759006820b00f69d1caa81d1 | |
parent | d59f9b756eea4a9fc85266aa31e1a355f6c40494 (diff) | |
download | php-git-6a1f477be9dd7484eb49b9a68efb7c0954c87815.tar.gz |
[0.05]
- Disable html_errors in info sent
-rwxr-xr-x | run-tests.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/run-tests.php b/run-tests.php index d29b147bbd..7868566fbb 100755 --- a/run-tests.php +++ b/run-tests.php @@ -249,7 +249,7 @@ define('PHP_QA_EMAIL', 'php-qa@lists.php.net'); define('QA_SUBMISSION_PAGE', 'http://qa.php.net/buildtest-process.php'); /* We got failed Tests, offer the user to send and e-mail to QA team */ -if ($sum_results['FAILED']) { +if ($sum_results['FAILED'] && !getenv("DONT_ASK_QA")) { $fp = fopen("php://stdin", "r+"); fwrite($fp, "Some tests have failed, would you like to send the\nreport to PHP's QA team? [Yn]: "); fflush($fp); @@ -281,7 +281,7 @@ if ($sum_results['FAILED']) { } $failed_tests_data .= $sep . "PHPINFO" . $sep; - $failed_tests_data .= shell_exec($php.' -i'); + $failed_tests_data .= shell_exec($php.' -dhtml_errors=0 -i'); $compression = 0; |