diff options
author | Antony Dovgal <tony2001@php.net> | 2005-12-20 16:17:30 +0000 |
---|---|---|
committer | Antony Dovgal <tony2001@php.net> | 2005-12-20 16:17:30 +0000 |
commit | 670b075f87df4b37971c4167c692bc18bf56c134 (patch) | |
tree | 42848b7121db20339c73e94ae8bd24dd6cc613d2 /run-tests.php | |
parent | 97ec0f3db53a4b789d08cac473c54cff9b7d0692 (diff) | |
download | php-git-670b075f87df4b37971c4167c692bc18bf56c134.tar.gz |
fix notice
Diffstat (limited to 'run-tests.php')
-rwxr-xr-x | run-tests.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/run-tests.php b/run-tests.php index ab18f0d8f8..43e81d8640 100755 --- a/run-tests.php +++ b/run-tests.php @@ -1503,7 +1503,7 @@ function get_summary($show_ext_summary, $show_html) $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 = ""; |