aboutsummaryrefslogtreecommitdiff
path: root/docs/markdown/Unit-tests.md
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2019-04-24 23:18:18 +0300
committerGitHub <noreply@github.com>2019-04-24 23:18:18 +0300
commit25931abb262d2e19d43c8b557df02f1e29857440 (patch)
tree37864769adec5c944ed2cbf61bd9c575044cb317 /docs/markdown/Unit-tests.md
parent8018ef6ac6dead04f9a9f37bed3b47237b90ebad (diff)
parentccaa61ec52b97e1cbd8cd0f8986f005ae648a3ba (diff)
downloadmeson-25931abb262d2e19d43c8b557df02f1e29857440.zip
meson-25931abb262d2e19d43c8b557df02f1e29857440.tar.gz
meson-25931abb262d2e19d43c8b557df02f1e29857440.tar.bz2
Merge pull request #5319 from kjerstadius/gcovr-4.2
Gcovr 4.2
Diffstat (limited to 'docs/markdown/Unit-tests.md')
-rw-r--r--docs/markdown/Unit-tests.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/markdown/Unit-tests.md b/docs/markdown/Unit-tests.md
index 9e61739..694c190 100644
--- a/docs/markdown/Unit-tests.md
+++ b/docs/markdown/Unit-tests.md
@@ -30,7 +30,7 @@ Note how you need to specify multiple values as an array.
Coverage
--
-If you enable coverage measurements by giving Meson the command line flag `-Db_coverage=true`, you can generate coverage reports. Meson will autodetect what coverage generator tools you have installed and will generate the corresponding targets. These targets are `coverage-xml` and `coverage-text` which are both provided by [Gcovr](http://gcovr.com) and `coverage-html`, which requires [Lcov](https://ltp.sourceforge.io/coverage/lcov.php) and [GenHTML](https://linux.die.net/man/1/genhtml) or [Gcovr](http://gcovr.com) with html support.
+If you enable coverage measurements by giving Meson the command line flag `-Db_coverage=true`, you can generate coverage reports. Meson will autodetect what coverage generator tools you have installed and will generate the corresponding targets. These targets are `coverage-xml` and `coverage-text` which are both provided by [Gcovr](http://gcovr.com) (version 3.3 or higher) and `coverage-html`, which requires [Lcov](https://ltp.sourceforge.io/coverage/lcov.php) and [GenHTML](https://linux.die.net/man/1/genhtml) or [Gcovr](http://gcovr.com). As a convenience, a high-level `coverage` target is also generated which will produce all 3 coverage report types, if possible.
The output of these commands is written to the log directory `meson-logs` in your build directory.