Module Name: src Committed By: rillig Date: Sun May 30 21:03:09 UTC 2021
Modified Files: src/usr.bin/make: Makefile Log Message: make: fix reported code coverage for *.h In 'make test-coverage', the number of uncovered lines for inline functions in headers was reported too high. The cause for this is that gcov reports the coverage for these functions multiple times, once per translation unit. If some of the translation units don't use these inline functions, summing the lines containing '#####' quickly leads to numbers that are obviously too high. To generate a diff of this commit: cvs rdiff -u -r1.114 -r1.115 src/usr.bin/make/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.