From 83145ffed6a49dd5ceb0555642d59e4ac3809b0a Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Sat, 2 Feb 2019 16:49:28 -0500 Subject: [PATCH] Cleanup lcov recipe --- GNUmakefile | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/GNUmakefile b/GNUmakefile index d782dd36..d84e8e7e 100755 --- a/GNUmakefile +++ b/GNUmakefile @@ -1127,9 +1127,13 @@ lcov coverage: cryptest.exe lcov --base-directory . --directory . --zerocounters -q ./cryptest.exe v ./cryptest.exe tv all + ./cryptest.exe b 0.25 lcov --base-directory . --directory . -c -o cryptest.info - lcov --remove cryptest.info "adhoc.*" "fips140.*" "*test.*" "bench*.*" "validat*.*" "/usr/*" -o cryptest.info - genhtml -o ./TestCoverage/ -t "cryptest.exe test coverage" --num-spaces 4 cryptest.info + lcov --remove cryptest.info "adhoc.*" -o cryptest.info + lcov --remove cryptest.info "fips140.*" -o cryptest.info + lcov --remove cryptest.info "*test.*" -o cryptest.info + lcov --remove cryptest.info "/usr/*" -o cryptest.info + genhtml -o ./TestCoverage/ -t "Crypto++ test coverage" --num-spaces 4 cryptest.info # Travis CI and CodeCov rule .PHONY: gcov codecov