~ubuntu-branches/ubuntu/precise/transmageddon/precise

« back to all changes in this revision

Viewing changes to common/coverage/coverage-report-entry.pl

  • Committer: Bazaar Package Importer
  • Author(s): Alessio Treglia
  • Date: 2009-10-14 08:28:43 UTC
  • Revision ID: james.westby@ubuntu.com-20091014082843-uxbyrcqydc13zrim
Tags: upstream-0.14
ImportĀ upstreamĀ versionĀ 0.14

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/perl
 
2
#
 
3
# Copyright (C) 2006 Daniel Berrange
 
4
#
 
5
# This program is free software; you can redistribute it and/or modify
 
6
# it under the terms of the GNU General Public License as published by
 
7
# the Free Software Foundation; either version 2 of the License, or
 
8
# (at your option) any later version.
 
9
#
 
10
# This program is distributed in the hope that it will be useful,
 
11
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
# GNU General Public License for more details.
 
14
#
 
15
# You should have received a copy of the GNU General Public License
 
16
# along with this program; if not, write to the Free Software
 
17
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
18
 
 
19
 
 
20
print <<EOF;
 
21
<html>
 
22
<head>
 
23
<title>Coverage report for $ARGV[0]</title>
 
24
<style type="text/css">
 
25
          span.perfect {
 
26
            background: rgb(0,255,0);
 
27
          }
 
28
          span.terrible {
 
29
            background: rgb(255,0,0);
 
30
          }
 
31
</style>
 
32
</head>
 
33
<body>
 
34
<h1>Coverage report for $ARGV[0]</h1>
 
35
 
 
36
<pre>
 
37
EOF
 
38
 
 
39
 
 
40
while (<>) {
 
41
    s/&/&amp;/g;
 
42
    s/</&lt;/g;
 
43
    s/>/&gt;/g;
 
44
 
 
45
    if (/^\s*function (\S+) called (\d+) returned \d+% blocks executed \d+%/) {
 
46
        my $class = $2 > 0 ? "perfect" : "terrible";
 
47
        $_ = "<span class=\"$class\" id=\"" . $1 . "\">$_</span>";
 
48
    } elsif (/^\s*branch\s+\d+\s+taken\s+(\d+)%\s+.*$/) {
 
49
        my $class = $1 > 0 ? "perfect" : "terrible";
 
50
        $_ = "<span class=\"$class\">$_</span>";
 
51
    } elsif (/^\s*branch\s+\d+\s+never executed.*$/) {
 
52
        my $class = "terrible";
 
53
        $_ = "<span class=\"$class\">$_</span>";
 
54
    } elsif (/^\s*call\s+\d+\s+never executed.*$/) {
 
55
        my $class = "terrible";
 
56
        $_ = "<span class=\"$class\">$_</span>";
 
57
    } elsif (/^\s*call\s+\d+\s+returned\s+(\d+)%.*$/) {
 
58
        my $class = $1 > 0 ? "perfect" : "terrible";
 
59
        $_ = "<span class=\"$class\">$_</span>";
 
60
    }
 
61
    
 
62
 
 
63
    print;
 
64
}
 
65
 
 
66
print <<EOF;
 
67
</pre>
 
68
</body>
 
69
</html>
 
70
EOF