From a0238697965ca950ce7a6ed3bf6fc5b5e8a6a675 Mon Sep 17 00:00:00 2001 From: Dominik Loidolt <dominik.loidolt@univie.ac.at> Date: Fri, 23 Aug 2024 11:14:11 +0200 Subject: [PATCH] Improve documentation about generation coverage report --- INSTALL.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/INSTALL.md b/INSTALL.md index 98ba3ce..fc7e40d 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -115,7 +115,7 @@ meson test --gdb <testname> ### Producing a coverage report -First, configure the build with this command. +First, ensure that either `gcovr` or `lcov` is installed as a dependency for generating coverage reports. ``` cd <name of the build directory> @@ -172,6 +172,12 @@ meson test fuzz_round_trip\ 10\ min --verbose Happy fuzzing! 🚀 +To reset the coverage data, use the following command: + +``` +ninja clean-gcda +``` + ## Documentation ### External dependencies To generate the documentation you need the [Doxygen](https://www.doxygen.nl/index.html) program. -- GitLab