From: Peter O. <obe...@us...> - 2010-08-05 15:12:04
|
Update of /cvsroot/ltp/utils/analysis/lcov/man In directory sfp-cvsdas-2.v30.ch3.sourceforge.com:/tmp/cvs-serv5351/man Modified Files: lcovrc.5 Log Message: lcov: introduce configuration file parameters for list output Make some aspects of list output customizable via configuration file parameters. Also introduce special handling, if the root directory is chosen as prefix. Index: lcovrc.5 =================================================================== RCS file: /cvsroot/ltp/utils/analysis/lcov/man/lcovrc.5,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** lcovrc.5 19 Jul 2010 14:27:08 -0000 1.13 --- lcovrc.5 5 Aug 2010 15:11:56 -0000 1.14 *************** *** 179,182 **** --- 179,198 ---- lcov_list_full_path = 0 .br + + # Specify the maximum width for list output. This value is + .br + # ignored when lcov_list_full_path is non\-zero. + .br + lcov_list_width = 80 + .br + + # Specify the maximum percentage of file names which may be + .br + # truncated when choosing a directory prefix in list output. + .br + # This value is ignored when lcov_list_full_path is non\-zero. + .br + + lcov_list_truncate_max = 20 .PP *************** *** 551,554 **** --- 567,592 ---- .PP + .BR lcov_list_max_width " =" + .IR width + .IP + Specify the maximum width for list output. This value is ignored when + lcov_list_full_path is non\-zero. + .br + + Default is 80. + .PP + + .BR lcov_list_truncate_max + .B " =" + .IR percentage + .IP + Specify the maximum percentage of file names which may be truncated when + choosing a directory prefix in list output. This value is ignored when + lcov_list_full_path is non\-zero. + .br + + Default is 20. + .PP + .SH FILES |