aboutsummaryrefslogtreecommitdiff
path: root/docs/devel
diff options
context:
space:
mode:
authorAlexander Bulekov <alxndr@bu.edu>2020-11-06 13:06:00 -0500
committerThomas Huth <thuth@redhat.com>2020-11-10 08:51:29 +0100
commite6a3e1322ba9e05a7919d9cd10d05c8c23fa8698 (patch)
treee91bfcd91955a16b48d7fab70963e5de46974c0c /docs/devel
parentf3a0208f24775c23c3db867a5e6df889d5132ed6 (diff)
downloadqemu-e6a3e1322ba9e05a7919d9cd10d05c8c23fa8698.zip
qemu-e6a3e1322ba9e05a7919d9cd10d05c8c23fa8698.tar.gz
qemu-e6a3e1322ba9e05a7919d9cd10d05c8c23fa8698.tar.bz2
docs/fuzz: update fuzzing documentation post-meson
Signed-off-by: Alexander Bulekov <alxndr@bu.edu> Message-Id: <20201106180600.360110-3-alxndr@bu.edu> Signed-off-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to 'docs/devel')
-rw-r--r--docs/devel/fuzzing.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/devel/fuzzing.rst b/docs/devel/fuzzing.rst
index f19d75c..6096242 100644
--- a/docs/devel/fuzzing.rst
+++ b/docs/devel/fuzzing.rst
@@ -34,16 +34,16 @@ such as out-of-bounds accesses, use-after-frees, double-frees etc.::
Fuzz targets are built similarly to system targets::
- make i386-softmmu/fuzz
+ make qemu-fuzz-i386
-This builds ``./i386-softmmu/qemu-fuzz-i386``
+This builds ``./qemu-fuzz-i386``
The first option to this command is: ``--fuzz-target=FUZZ_NAME``
To list all of the available fuzzers run ``qemu-fuzz-i386`` with no arguments.
For example::
- ./i386-softmmu/qemu-fuzz-i386 --fuzz-target=virtio-scsi-fuzz
+ ./qemu-fuzz-i386 --fuzz-target=virtio-scsi-fuzz
Internally, libfuzzer parses all arguments that do not begin with ``"--"``.
Information about these is available by passing ``-help=1``