From: Peter O. <obe...@us...> - 2010-08-05 15:12:04
|
Update of /cvsroot/ltp/utils/analysis/lcov In directory sfp-cvsdas-2.v30.ch3.sourceforge.com:/tmp/cvs-serv5351 Modified Files: lcovrc 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 =================================================================== RCS file: /cvsroot/ltp/utils/analysis/lcov/lcovrc,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** lcovrc 19 Jul 2010 14:27:08 -0000 1.12 --- lcovrc 5 Aug 2010 15:11:56 -0000 1.13 *************** *** 120,121 **** --- 120,130 ---- # option of lcov) lcov_list_full_path = 0 + + # Specify the maximum width for list output. This value is ignored when + # lcov_list_full_path is non-zero. + lcov_list_width = 80 + + # 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. + lcov_list_truncate_max = 20 |