From 1d21e169f5af587e88b70ecd9640f8b33a76ebc5 Mon Sep 17 00:00:00 2001 From: Alexander Potapenko Date: Thu, 9 Nov 2023 11:18:23 +0100 Subject: docs/coverage.md: replace --kernel_obj with --config Replace --kernel_obj with --config --- docs/coverage.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'docs/coverage.md') 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:/rawcover Now this raw cover data can be fed to `syz-cover` to generate coverage report: ``` bash -./bin/syz-cover --kernel_obj rawcover +./bin/syz-cover --config rawcover ``` You can also export CSV file containing function coverage by: ``` bash -./bin/syz-cover --kernel_obj --csv rawcover +./bin/syz-cover --config --csv rawcover ``` You can export a JSON file containing line coverage info by: ```bash -./bin/syz-cover --kernel_obj --json rawcover +./bin/syz-cover --config --json rawcover ``` -- cgit mrf-deployment