aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHeyuan Shi <heyuan@linux.alibaba.com>2020-09-15 10:23:43 +0800
committerDmitry Vyukov <dvyukov@google.com>2020-09-15 09:39:09 +0200
commit6989d6f61d7d7db02083998790f6dd247d8d7307 (patch)
tree0ccf0e457ebc1e630f7bb05d5ba0c396107df367
parent9e681632f52e946a9adebdf8d12fbb814b6d2653 (diff)
docs: clarify coverage point in different compliers
-rw-r--r--AUTHORS1
-rw-r--r--CONTRIBUTORS1
-rw-r--r--docs/coverage.md2
3 files changed, 3 insertions, 1 deletions
diff --git a/AUTHORS b/AUTHORS
index 8a63d26ec..1c674c28a 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -39,3 +39,4 @@ Andrew Turner
Ethercflow
Collabora
Bayerische Motoren Werke Aktiengesellschaft (BMW AG)
+Heyuan Shi
diff --git a/CONTRIBUTORS b/CONTRIBUTORS
index cd1eac433..545cf5d12 100644
--- a/CONTRIBUTORS
+++ b/CONTRIBUTORS
@@ -70,3 +70,4 @@ Daimeng Wang
Jukka Kaartinen
Alexander Egorenkov
Matthew Halchyshak
+Heyuan Shi
diff --git a/docs/coverage.md b/docs/coverage.md
index 392756313..8d1adb33f 100644
--- a/docs/coverage.md
+++ b/docs/coverage.md
@@ -4,7 +4,7 @@ See [this](linux/coverage.md) for Linux kernel specific coverage information.
## Web Interface
-When clicking on `cover` link you get view showing each directory located in your kernel build directory. It's showing either percentage number `X% of N` or `---`. `X% of N` means that `X%` of `N` coverage points is covered so far, a coverage point generally refers to a basic block or a CFG edge (depends on compiler and instrumentation mode used during build). `---` indicates there is no coverage in that directory.
+When clicking on `cover` link you get view showing each directory located in your kernel build directory. It's showing either percentage number `X% of N` or `---`. `X% of N` means that `X%` of `N` coverage points is covered so far, a coverage point generally refers to a basic block or a CFG edge (depends on compiler and instrumentation mode used during build, basic block in gcc and CFG edge in clang). `---` indicates there is no coverage in that directory.
Directory can be clicked and you get view on files and possible subdirectories. On each source code file there is again either `---` or coverage percentage.