From: Peter O. <obe...@us...> - 2010-07-19 16:06:23
|
Update of /cvsroot/ltp/utils/analysis/lcov/bin In directory sfp-cvsdas-2.v30.ch3.sourceforge.com:/tmp/cvs-serv5031 Modified Files: genhtml Log Message: genhtml: change wording for branches which were not executed Since gcov sometimes reports both branches which were never executed as well as branches which were executed in a single block, the wording of the HTML alt text needs to be adjusted accordingly. Index: genhtml =================================================================== RCS file: /cvsroot/ltp/utils/analysis/lcov/bin/genhtml,v retrieving revision 1.49 retrieving revision 1.50 diff -C2 -d -r1.49 -r1.50 *** genhtml 19 Jul 2010 15:23:10 -0000 1.49 --- genhtml 19 Jul 2010 16:06:15 -0000 1.50 *************** *** 3800,3806 **** $class = "branchNoExec"; $text = " # "; ! $title = "Block containing branch ". ! "$br_num was never ". ! "executed"; } elsif ($taken == 0) { $class = "branchNoCov"; --- 3800,3804 ---- $class = "branchNoExec"; $text = " # "; ! $title = "Branch $br_num was not executed"; } elsif ($taken == 0) { $class = "branchNoCov"; |