aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2017-05-22 20:22:12 +0300
committerGitHub <noreply@github.com>2017-05-22 20:22:12 +0300
commit07f117e38504df2525b4b09eb16ccc208031db9c (patch)
treecf65a7b66799c19a41e1d537f555541f119c0366 /docs
parent19faebe09f649bab21ca40a76fd517b6e245a453 (diff)
parent083b2756d1f1c41a06e9b1d2c60b2b2751d1070f (diff)
downloadmeson-07f117e38504df2525b4b09eb16ccc208031db9c.zip
meson-07f117e38504df2525b4b09eb16ccc208031db9c.tar.gz
meson-07f117e38504df2525b4b09eb16ccc208031db9c.tar.bz2
Merge pull request #1664 from QuLogic/codecov
Enable code coverage
Diffstat (limited to 'docs')
-rw-r--r--docs/markdown/Release-notes-for-0.41.0.md7
1 files changed, 6 insertions, 1 deletions
diff --git a/docs/markdown/Release-notes-for-0.41.0.md b/docs/markdown/Release-notes-for-0.41.0.md
index a96ded0..7da9ed7 100644
--- a/docs/markdown/Release-notes-for-0.41.0.md
+++ b/docs/markdown/Release-notes-for-0.41.0.md
@@ -52,7 +52,12 @@ installed. This is roughly equivalent to the `distcheck` target in
other build systems. Currently this only works for projects using Git
and only with the Ninja backend.
-
## Support for passing arguments to Rust compiler
Targets for building rust now take a `rust_args` keyword.
+
+## Code coverage export for tests
+
+Code coverage can be generated for tests by passing the `--cov` argument to
+the `run_tests.py` test runner. Note, since multiple processes are used,
+coverage must be combined before producing a report (`coverage3 combine`.)