We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e46899 commit 5ff01c2Copy full SHA for 5ff01c2
doc/developer-notes.md
@@ -182,6 +182,22 @@ $ valgrind --suppressions=contrib/valgrind.supp --leak-check=full \
182
$ valgrind -v --leak-check=full src/bitcoind -printtoconsole
183
```
184
185
+**compiling for test coverage**
186
+
187
+LCOV can be used to generate a test coverage report based upon `make check`
188
+execution. LCOV must be installed on your system (e.g. the `lcov` package
189
+on Debian/Ubuntu).
190
191
+To enable LCOV report generation during test runs:
192
193
+```shell
194
+./configure --enable-lcov
195
+make
196
+make cov
197
198
+# A coverage report will now be accessible at `./test_bitcoin.coverage/index.html`.
199
+```
200
201
Locking/mutex usage notes
202
-------------------------
203
0 commit comments