docs/fuzz: update fuzzing documentation post-meson
authorAlexander Bulekov <alxndr@bu.edu>
Fri, 6 Nov 2020 18:06:00 +0000 (13:06 -0500)
committerThomas Huth <thuth@redhat.com>
Tue, 10 Nov 2020 07:51:29 +0000 (08:51 +0100)
Signed-off-by: Alexander Bulekov <alxndr@bu.edu>
Message-Id: <20201106180600.360110-3-alxndr@bu.edu>
Signed-off-by: Thomas Huth <thuth@redhat.com>
docs/devel/fuzzing.rst

index f19d75ceff8051b4e975a2f2d7ee0e5acb3b86e8..6096242d991829806738f352b9fa1d520cb50ef6 100644 (file)
@@ -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``