mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-10 02:54:58 -06:00
fuzz: only use generic-fuzz targets on oss-fuzz
The non-generic-fuzz targets often time-out, or run out of memory. Additionally, they create unreproducible bug-reports. It is possible that this is resulting in failing coverage-reports on OSS-Fuzz. In the future, these test-cases should be fixed, or removed. Reviewed-by: Darren Kenny <darren.kenny@oracle.com> Signed-off-by: Alexander Bulekov <alxndr@bu.edu> Message-Id: <20220623125505.2137534-1-alxndr@bu.edu> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
e56d097028
commit
0e76929d65
1 changed files with 2 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
||||||
#!/bin/sh -e
|
#!/bin/bash -e
|
||||||
#
|
#
|
||||||
# OSS-Fuzz build script. See:
|
# OSS-Fuzz build script. See:
|
||||||
# https://google.github.io/oss-fuzz/getting-started/new-project-guide/#buildsh
|
# https://google.github.io/oss-fuzz/getting-started/new-project-guide/#buildsh
|
||||||
|
@ -105,7 +105,7 @@ do
|
||||||
# to be configured. We have some generic-fuzz-{pc-q35, floppy, ...} targets
|
# to be configured. We have some generic-fuzz-{pc-q35, floppy, ...} targets
|
||||||
# that are thin wrappers around this target that set the required
|
# that are thin wrappers around this target that set the required
|
||||||
# environment variables according to predefined configs.
|
# environment variables according to predefined configs.
|
||||||
if [ "$target" != "generic-fuzz" ]; then
|
if [[ $target == "generic-fuzz-"* ]]; then
|
||||||
ln $base_copy \
|
ln $base_copy \
|
||||||
"$DEST_DIR/qemu-fuzz-i386-target-$target"
|
"$DEST_DIR/qemu-fuzz-i386-target-$target"
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue