Searched refs:GCOV_PERL (Results 1 – 1 of 1) sorted by relevance
33 GCOV_PERL= if (/^File '(?:.*\/)?(\S+)'/) { macro34 GCOV_PERL+= $$file = $$1; $$func = "";35 GCOV_PERL+= } elsif (/^Function '(\S+)'/) {36 GCOV_PERL+= $$func = $$1;37 GCOV_PERL+= } elsif (/^Lines executed:(\d+\.\d+)% of (\d+)/ && defined($$file)) {38 GCOV_PERL+= my ($$percent, $$lines) = ($$1, $$2);39 GCOV_PERL+= my $$uncovered =40 GCOV_PERL+= $$percent eq '100.00' ? '0'41 GCOV_PERL+= : $$file =~ /\.h$$/ ? '?'42 GCOV_PERL+= : `grep -c '\#\#\#\#\#:' < \$$(basename $$file.gcov)`;[all …]