felipe Sat Aug 2 13:39:27 2008 UTC
Modified files:
/php-src run-tests.php
Log:
- Fixed undefined variable
http://cvs.php.net/viewvc.cgi/php-src/run-tests.php?r1=1.371&r2=1.372&diff_format=u
Index: php-src/run-tests.php
diff -u php-src/run-tests.php:1.371 php-src/run-tests.php:1.372
--- php-src/run-tests.php:1.371 Fri Jul 25 09:55:51 2008
+++ php-src/run-tests.php Sat Aug 2 13:39:26 2008
@@ -24,7 +24,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: run-tests.php,v 1.371 2008/07/25 09:55:51 tony2001 Exp $ */
+/* $Id: run-tests.php,v 1.372 2008/08/02 13:39:26 felipe Exp $ */
/* Sanity check to ensure that pcre extension needed by this script is
available.
* In the event it is not, print a nice error message indicating that this
script will
@@ -284,7 +284,7 @@
function save_or_mail_results()
{
global $sum_results, $just_save_results, $failed_test_summary,
- $PHP_FAILED_TESTS, $CUR_DIR, $php, $output_file;
+ $PHP_FAILED_TESTS, $CUR_DIR, $php, $output_file, $compression;
/* We got failed Tests, offer the user to send an e-mail to QA team,
unless NO_INTERACTION is set */
if (!getenv('NO_INTERACTION')) {
@@ -608,7 +608,7 @@
$html_output = is_resource($html_file);
break;
case '--version':
- echo '$Revision: 1.371 $' . "\n";
+ echo '$Revision: 1.372 $' . "\n";
exit(1);
default:
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php