From: Marcus Boerger Date: Sat, 31 May 2003 12:13:15 +0000 (+0000) Subject: Showing info/warning once is enough X-Git-Tag: php-4.3.3RC1~131 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=19081305e139cd97e0fa9fcf0ecc0450b4d04ea3;p=php Showing info/warning once is enough --- diff --git a/run-tests.php b/run-tests.php index 9bc8564a61..636c72e7b4 100755 --- a/run-tests.php +++ b/run-tests.php @@ -616,7 +616,6 @@ TEST $file $reason = (ereg("^info[[:space:]]*(.+)\$", trim($output))) ? ereg_replace("^info[[:space:]]*(.+)\$", "\\1", trim($output)) : FALSE; if ($reason) { $info = " (info: $reason)"; - $tested .= $info; } } if (eregi("^warn", trim($output))) { @@ -624,7 +623,6 @@ TEST $file if ($reason) { $warn = true; /* only if there is a reason */ $info = " (warn: $reason)"; - $tested .= $info; } } }