aboutsummaryrefslogtreecommitdiffstats
path: root/docs/coverage.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/coverage.md')
-rw-r--r--docs/coverage.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/coverage.md b/docs/coverage.md
index 66c3859c4..25d19e646 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 --kernel_obj <directory where vmlinux is located> 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 --kernel_obj <directory where vmlinux is located> --csv <filename where to export> rawcover
+./bin/syz-cover --config <location of your syzkaller config> --csv <filename where to export> rawcover
```
You can export a JSON file containing line coverage info by:
```bash
-./bin/syz-cover --kernel_obj <directory where vmlinux is located> --json <filename where to export> rawcover
+./bin/syz-cover --config <location of your syzkaller config> --json <filename where to export> rawcover
```