forked from etr/libhttpserver
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcoveralls-debug
More file actions
Latest commit
executable file
·32 lines (31 loc) · 747 Bytes
/
Copy pathcoveralls-debug
File metadata and controls
executable file
·32 lines (31 loc) · 747 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#!/usr/bin/perl
use strict;
use warnings;
use JSON;
use File::Slurp;
my$json = JSON->new;
my$file = read_file('coveralls.json', { binmode=>':utf8' });
my$rv = $json->decode($file);
my$sources = $rv->{'source_files'};
printSTDERRjoin", ", keys %{$rv}, "\n";
foreachmy$source (sort {
$a->{'name'} cmp$b->{'name'}
} @{$sources})
{
my$sum = 0;
my$undefs = 0;
my$coverages = $source->{'coverage'};
foreachmy$coverage (@{$coverages})
{
if (defined$coverage)
{ $sum += $coverage }
else { $undefs ++; }
}
if ($sum > 0)
{
printSTDERR$source->{'name'};
printSTDERR" [sum: $sum]";
printSTDERR" [undefs: $undefs]";
printSTDERR"\n";
}
}