summaryrefslogtreecommitdiff
path: root/run-tests.php
diff options
context:
space:
mode:
authorfoobar <sniper@php.net>2005-04-07 20:22:55 +0000
committerfoobar <sniper@php.net>2005-04-07 20:22:55 +0000
commitce36ef5787afd16f04f5ed7fa8346b19fee2fc38 (patch)
tree7cf4ea94a56301adf940f45e32279a47feb7d67d /run-tests.php
parent355eefe5f9f42ba4fbf0ae6b9f0352765370dc16 (diff)
downloadphp-git-ce36ef5787afd16f04f5ed7fa8346b19fee2fc38.tar.gz
- Reword the send-report-part a bit. (bug #32624)
Diffstat (limited to 'run-tests.php')
-rwxr-xr-xrun-tests.php9
1 files changed, 5 insertions, 4 deletions
diff --git a/run-tests.php b/run-tests.php
index 9c0c97b168..060fd57ef5 100755
--- a/run-tests.php
+++ b/run-tests.php
@@ -456,12 +456,13 @@ echo $summary;
define('PHP_QA_EMAIL', 'qa-reports@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, unless NO_INTERACTION is set */
+/* We got failed Tests, offer the user to send an e-mail to QA team, unless NO_INTERACTION is set */
if (!getenv('NO_INTERACTION')) {
$fp = fopen("php://stdin", "r+");
- echo "\nPlease allow this report to be send to the PHP QA\nteam. This will give us a better understanding in how\n";
- echo "PHP's test cases are doing.\n";
- echo "(choose \"s\" to just save the results to a file)? [Yns]: ";
+ echo "\nYou may have found a problem in PHP.\nWe would like to send this report automatically to the\n";
+ echo "PHP QA team, to give us a better understanding of how\nthe test cases are doing. If you don't want to send it\n";
+ echo "immediately, you can choose \"s\" to save the report to\na file that you can send us later.\n";
+ echo "Do you want to send this report now? [Yns]: ";
flush();
$user_input = fgets($fp, 10);
$just_save_results = (strtolower($user_input[0]) == 's');