summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilip Withnall <pwithnall@gnome.org>2024-09-28 22:31:23 +0100
committerPhilip Withnall <pwithnall@gnome.org>2024-09-28 22:38:00 +0100
commite115eafb8a3eb1e551f578e3605d338e02551ecd (patch)
tree0b1db1fc4cc7eb674157bf1e34bd75b24a31a85e
parent4136db0a8cdc8fafbf73e347390cef29d3c199ae (diff)
lcov: Fix use of deprecated lcov_branch_coverage option
This option was renamed to `branch_coverage` in more recent versions of lcov. This might explain why branch coverage is not being collected by CI at the moment. Signed-off-by: Philip Withnall <pwithnall@gnome.org>
-rw-r--r--.lcovrc2
1 files changed, 1 insertions, 1 deletions
diff --git a/.lcovrc b/.lcovrc
index 353d49f43..53c910d55 100644
--- a/.lcovrc
+++ b/.lcovrc
@@ -2,7 +2,7 @@
# See lcovrc(5)
# Always enable branch coverage
-lcov_branch_coverage = 1
+branch_coverage = 1
# Disable exception branch for C++:
# https://github.com/linux-test-project/lcov/issues/209