We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent abd0688 commit 134f323Copy full SHA for 134f323
gen-coverage-report.sh
@@ -29,9 +29,15 @@ make check
29
echo "Generating report"
30
mkdir -p $DESTDIR
31
find tests -name '*.gcda' -o -name '*.gcno' -delete
32
-lcov --directory . --capture --output-file $DESTDIR/coverage.tmp \
+lcov --capture --output-file $DESTDIR/coverage.tmp \
33
+ --rc lcov_branch_coverage=1 \
34
+ --directory crypto \
35
+ --directory ssl \
36
+ --directory tls \
37
--test-name "LibreSSL $VERSION"
38
genhtml --prefix . --output-directory $DESTDIR \
39
+ --branch-coverage --function-coverage \
40
41
--title "LibreSSL $VERSION" --legend --show-detail $DESTDIR/coverage.tmp
42
43
echo "Code coverage report is available under $DESTDIR"
0 commit comments