Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

docs: dev-tools: testing-overview.rst: avoid using ReST :doc:`foo` markup

The :doc:`foo` tag is auto-generated via automarkup.py.
So, use the filename at the sources, instead of :doc:`foo`.

Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
Link: https://lore.kernel.org/r/6bbecd4170ee08f36f8060b0719a46c64a21aefc.1623824363.git.mchehab+huawei@kernel.org
Signed-off-by: Jonathan Corbet <corbet@lwn.net>

authored by

Mauro Carvalho Chehab and committed by
Jonathan Corbet
3a8b57d2 a822b2ee

+8 -8
+8 -8
Documentation/dev-tools/testing-overview.rst
··· 71 71 of code. This is useful for determining how much of the kernel is being tested, 72 72 and for finding corner-cases which are not covered by the appropriate test. 73 73 74 - :doc:`gcov` is GCC's coverage testing tool, which can be used with the kernel 75 - to get global or per-module coverage. Unlike KCOV, it does not record per-task 76 - coverage. Coverage data can be read from debugfs, and interpreted using the 77 - usual gcov tooling. 74 + Documentation/dev-tools/gcov.rst is GCC's coverage testing tool, which can be 75 + used with the kernel to get global or per-module coverage. Unlike KCOV, it 76 + does not record per-task coverage. Coverage data can be read from debugfs, 77 + and interpreted using the usual gcov tooling. 78 78 79 - :doc:`kcov` is a feature which can be built in to the kernel to allow 80 - capturing coverage on a per-task level. It's therefore useful for fuzzing and 81 - other situations where information about code executed during, for example, a 82 - single syscall is useful. 79 + Documentation/dev-tools/kcov.rst is a feature which can be built in to the 80 + kernel to allow capturing coverage on a per-task level. It's therefore useful 81 + for fuzzing and other situations where information about code executed during, 82 + for example, a single syscall is useful. 83 83 84 84 85 85 Dynamic Analysis Tools