From: Peter O. <obe...@us...> - 2010-08-23 14:48:18
|
Update of /cvsroot/ltp/utils/analysis/lcov In directory sfp-cvsdas-2.v30.ch3.sourceforge.com:/tmp/cvs-serv685 Modified Files: lcovrc Log Message: lcov: add option to exclude external files Implement an option for users to specify that external source files should be excluded when capturing coverage data. External source files are files which are not located in the directories specified by the --directory and --base-directory options of lcov/geninfo. Index: lcovrc =================================================================== RCS file: /cvsroot/ltp/utils/analysis/lcov/lcovrc,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** lcovrc 20 Aug 2010 14:27:19 -0000 1.14 --- lcovrc 23 Aug 2010 14:47:38 -0000 1.15 *************** *** 132,133 **** --- 132,137 ---- # lcov_list_full_path is non-zero. lcov_list_truncate_max = 20 + + # Specify whether to capture coverage data for external source files (can + # be overridden by the --external and --no-external options of geninfo/lcov) + geninfo_external = 1 |