Lines Matching full:lcov
425 .PHONY: coverage lcov-run lcov-report coverage-sync
427 # run lcov from scratch, always
429 $(MAKE) lcov-run
430 $(MAKE) lcov-report
438 lcov-run:
440 lcov $(coverage_opts) --zerocounters
444 lcov-report:
446 lcov $(coverage_opts) --capture --no-external --ignore-errors graph \
447 | sed 's|$(abspath $(builddir))|$(abspath $(srcdir))|' > $(coverage_dir)/.lcov.info
448 lcov --remove $(coverage_dir)/.lcov.info --output-file $(coverage_dir)/.lcov-clean.info 'test-*'
449 genhtml -t "kmod test coverage" -o $(coverage_dir) $(coverage_dir)/.lcov-clean.info
454 lcov-run lcov-report: