summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcus Boerger <helly@php.net>2005-12-01 08:49:57 +0000
committerMarcus Boerger <helly@php.net>2005-12-01 08:49:57 +0000
commit885a80dabc5a10d0537dd328e9a7acb4070d8c5a (patch)
treed02c252e67962f078dfbaef9978996a5feb40d4d
parent57fa8a57825f45e8e5bab9ef0eb57d234898c142 (diff)
downloadphp-git-885a80dabc5a10d0537dd328e9a7acb4070d8c5a.tar.gz
- Fix warnings
-rwxr-xr-xrun-tests.php5
1 files changed, 4 insertions, 1 deletions
diff --git a/run-tests.php b/run-tests.php
index a681e023c7..a9e20aef40 100755
--- a/run-tests.php
+++ b/run-tests.php
@@ -521,7 +521,10 @@ if ($just_save_results || !getenv('NO_INTERACTION')) {
* Make an archive of all the failed tests
* Send an email
*/
-
+ if ($just_save_results)
+ {
+ $user_input = 's';
+ }
/* Ask the user to provide an email address, so that QA team can contact the user */
if (!strncasecmp($user_input, 'y', 1) || strlen(trim($user_input)) == 0) {
echo "\nPlease enter your email address.\n(Your address will be mangled so that it will not go out on any\nmailinglist in plain text): ";