File tree Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -73,7 +73,7 @@ use Digest::MD5 qw(md5_base64);
73
73
74
74
# Global constants
75
75
our $title = " LCOV - code coverage report" ;
76
- our $lcov_version = ' LCOV version 1.11 pre (CVS $Revision: 1.73 $)' ;
76
+ our $lcov_version = ' LCOV version 1.11 pre (CVS $Revision: 1.74 $)' ;
77
77
our $lcov_url = " http://ltp.sourceforge.net/coverage/lcov.php" ;
78
78
our $tool_name = basename($0 );
79
79
@@ -1407,6 +1407,10 @@ sub process_file($$$)
1407
1407
# "func" -> \%funcdata
1408
1408
# "found" -> $lines_found (number of instrumented lines found in file)
1409
1409
# "hit" -> $lines_hit (number of executed lines in file)
1410
+ # "f_found" -> $fn_found (number of instrumented functions found in file)
1411
+ # "f_hit" -> $fn_hit (number of executed functions in file)
1412
+ # "b_found" -> $br_found (number of instrumented branches found in file)
1413
+ # "b_hit" -> $br_hit (number of executed branches in file)
1410
1414
# "check" -> \%checkdata
1411
1415
# "testfnc" -> \%testfncdata
1412
1416
# "sumfnc" -> \%sumfnccount
Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ use Cwd qw /abs_path getcwd/;
71
71
72
72
73
73
# Global constants
74
- our $lcov_version = ' LCOV version 1.11 pre (CVS $Revision: 1.93 $)' ;
74
+ our $lcov_version = ' LCOV version 1.11 pre (CVS $Revision: 1.94 $)' ;
75
75
our $lcov_url = " http://ltp.sourceforge.net/coverage/lcov.php" ;
76
76
our $tool_name = basename($0 );
77
77
@@ -1554,6 +1554,10 @@ sub get_br_found_and_hit($)
1554
1554
# "func" -> \%funcdata
1555
1555
# "found" -> $lines_found (number of instrumented lines found in file)
1556
1556
# "hit" -> $lines_hit (number of executed lines in file)
1557
+ # "f_found" -> $fn_found (number of instrumented functions found in file)
1558
+ # "f_hit" -> $fn_hit (number of executed functions in file)
1559
+ # "b_found" -> $br_found (number of instrumented branches found in file)
1560
+ # "b_hit" -> $br_hit (number of executed branches in file)
1557
1561
# "check" -> \%checkdata
1558
1562
# "testfnc" -> \%testfncdata
1559
1563
# "sumfnc" -> \%sumfnccount
You can’t perform that action at this time.
0 commit comments