Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/coverage.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```
Loading