aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorAleksandr Nogikh <nogikh@google.com>2026-01-20 18:28:46 +0100
committerAleksandr Nogikh <nogikh@google.com>2026-01-21 11:26:45 +0000
commitad02db7b6c8ae92053b85c73b7a8f896543e6b4e (patch)
tree71e75d72aeabbb8529757ac11f3455aae5b47b08 /docs
parente744051dd774dc8aa2a7b5f4fbad3d8946063988 (diff)
docs: update coverage.md
The docs file has become outdated. Fixes #6638.
Diffstat (limited to 'docs')
-rw-r--r--docs/coverage.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/coverage.md b/docs/coverage.md
index 6573d8ab4..ca21c52f6 100644
--- a/docs/coverage.md
+++ b/docs/coverage.md
@@ -77,17 +77,17 @@ wget http://localhost:<your syz-manager port>/rawcover
Now this raw cover data can be fed to `syz-cover` to generate coverage report:
``` bash
-./bin/syz-cover --config <location of your syzkaller config> rawcover
+./bin/syz-cover --config <location of your syzkaller config> ./rawcover
```
You can also export CSV file containing function coverage by:
``` bash
-./bin/syz-cover --config <location of your syzkaller config> --csv <filename where to export> rawcover
+./bin/syz-cover --config <location of your syzkaller config> --exports funccover ./rawcover
```
You can export a JSON file containing line coverage info by:
```bash
-./bin/syz-cover --config <location of your syzkaller config> --json <filename where to export> rawcover
+./bin/syz-cover --config <location of your syzkaller config> --exports json ./rawcover
```