summaryrefslogtreecommitdiff
path: root/tests/gcov-filter.pl
blob: 8a581d0aef62f7ed464128357e73d069dbfecde5 (plain)
1
2
3
4
5
6
7
#!/usr/bin/perl

$lines = join('', <>);
$lines =~ s/File (.+)\nLines (.+)\n(.+\n)*\n/$1 $2\n/g;
$lines =~ s/.+include\/c\+\+.+\n//g;

print $lines;