tony2001                Tue Dec 20 16:18:07 2005 EDT

  Modified files:              
    /php-src    run-tests.php 
  Log:
  MFB: fix notice
  
  
http://cvs.php.net/viewcvs.cgi/php-src/run-tests.php?r1=1.263&r2=1.264&diff_format=u
Index: php-src/run-tests.php
diff -u php-src/run-tests.php:1.263 php-src/run-tests.php:1.264
--- php-src/run-tests.php:1.263 Sun Dec 18 15:46:51 2005
+++ php-src/run-tests.php       Tue Dec 20 16:18:07 2005
@@ -23,7 +23,7 @@
    +----------------------------------------------------------------------+
  */
 
-/* $Id: run-tests.php,v 1.263 2005/12/18 15:46:51 helly Exp $ */
+/* $Id: run-tests.php,v 1.264 2005/12/20 16:18:07 tony2001 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
@@ -350,7 +350,7 @@
                                        $html_output = is_resource($html_file);
                                        break;
                                case '--version':
-                                       echo '$Revision: 1.263 $'."\n";
+                                       echo '$Revision: 1.264 $'."\n";
                                        exit(1);
                                default:
                                        echo "Illegal switch specified!\n";
@@ -1573,7 +1573,7 @@
                $x_leaked = (100.0 * $sum_results['LEAKED']) / $x_total;
                $x_passed = (100.0 * $sum_results['PASSED']) / $x_total;
        } else {
-               $x_warned = $x_failed = $x_passed = 0;
+               $x_warned = $x_failed = $x_passed = $x_leaked = 0;
        }
 
        $summary = "";

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to