From: Peter O. <obe...@us...> - 2013-01-25 16:30:28
|
Update of /cvsroot/ltp/utils/analysis/lcov/bin In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv22537 Modified Files: genhtml lcov Log Message: lcov/genhtml: fix outdated comment regarding data structure Index: genhtml =================================================================== RCS file: /cvsroot/ltp/utils/analysis/lcov/bin/genhtml,v retrieving revision 1.73 retrieving revision 1.74 diff -C2 -d -r1.73 -r1.74 *** genhtml 25 Jan 2013 16:29:30 -0000 1.73 --- genhtml 25 Jan 2013 16:30:25 -0000 1.74 *************** *** 1408,1411 **** --- 1408,1415 ---- # "found" -> $lines_found (number of instrumented lines found in file) # "hit" -> $lines_hit (number of executed lines in file) + # "f_found" -> $fn_found (number of instrumented functions found in file) + # "f_hit" -> $fn_hit (number of executed functions in file) + # "b_found" -> $br_found (number of instrumented branches found in file) + # "b_hit" -> $br_hit (number of executed branches in file) # "check" -> \%checkdata # "testfnc" -> \%testfncdata Index: lcov =================================================================== RCS file: /cvsroot/ltp/utils/analysis/lcov/bin/lcov,v retrieving revision 1.93 retrieving revision 1.94 diff -C2 -d -r1.93 -r1.94 *** lcov 10 Oct 2012 08:36:16 -0000 1.93 --- lcov 25 Jan 2013 16:30:25 -0000 1.94 *************** *** 1555,1558 **** --- 1555,1562 ---- # "found" -> $lines_found (number of instrumented lines found in file) # "hit" -> $lines_hit (number of executed lines in file) + # "f_found" -> $fn_found (number of instrumented functions found in file) + # "f_hit" -> $fn_hit (number of executed functions in file) + # "b_found" -> $br_found (number of instrumented branches found in file) + # "b_hit" -> $br_hit (number of executed branches in file) # "check" -> \%checkdata # "testfnc" -> \%testfncdata |