Re: [PATCH] run-tests.php
Melvyn Sopacua <msopacua <at> php.net>
2002-11-01 15:05:00 GMT
At 15:37 1-11-2002, Derick Rethans wrote:
> > Any objections?
>
>We can't object if there is no attachment :)
<?php while($i<100) { echo substr(' <at> #*!$%', mt_rand(1,6), 1); $i++; } ?>
With kind regards,
Melvyn Sopacua
<?php include("not_reflecting_employers_views.txt"); ?>
Index: run-tests.php
===================================================================
RCS file: /repository/php4/run-tests.php,v
retrieving revision 1.104
diff -u -r1.104 run-tests.php
--- run-tests.php 31 Oct 2002 14:01:58 -0000 1.104
+++ run-tests.php 1 Nov 2002 14:17:00 -0000
<at> <at> -280,10 +280,12 <at> <at>
/* We got failed Tests, offer the user to send and e-mail to QA team, unless NO_INTERACTION is set */
if ($sum_results['FAILED'] && !getenv('NO_INTERACTION')) {
$fp = fopen("php://stdin", "r+");
- echo "Some tests have failed, would you like to send the\nreport to PHP's QA team? [Yn]: ";
+ echo "Some tests have failed, would you like to send the\nreport to PHP's QA team\n";
+ echo "(choose \"s\" to just save the results to a file)? [Yns]: ";
$user_input = fgets($fp, 10);
+ $just_save_results = (strtolower($user_input[0]) == 's');
(Continue reading)