| 65 | } |
| 66 | |
| 67 | function realOutput($text, $user, $filename) { |
| 68 | print "------> "; |
| 69 | print $text; |
| 70 | if ($user == "all" && $filename != "") |
| 71 | { |
| 72 | print " (".$GLOBALS["file_maintainers"][$filename].")"; |
| 73 | } |
| 74 | print "\n"; |
| 75 | #error count |
| 76 | if ($filename != "") |
| 77 | { |
| 78 | if (isset($GLOBALS["file_maintainers"][$filename])) |
| 79 | { |
| 80 | foreach (explode(", ", $GLOBALS["file_maintainers"][$filename]) as $u) |
| 81 | { |
| 82 | $GLOBALS["maintainer_info"][trim($u)]["errors"]++; |
| 83 | } |
| 84 | } |
| 85 | } |
| 86 | } |
| 87 | |
| 88 | /** |
| 89 | Store results of tests for Ctest-Reporting |