All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] oss-fuzz: ensure base_copy is a generic-fuzzer
@ 2022-07-20 18:09 Alexander Bulekov
  2022-07-21  9:45 ` Paolo Bonzini
  0 siblings, 1 reply; 2+ messages in thread
From: Alexander Bulekov @ 2022-07-20 18:09 UTC (permalink / raw)
  To: qemu-devel
  Cc: Alexander Bulekov, Paolo Bonzini, Bandan Das, Stefan Hajnoczi,
	Thomas Huth

Depending on how the target list is sorted in by qemu, the first target
(used as the base copy of the fuzzer, to which all others are linked)
might not be a generic-fuzzer. Since we are trying to only use
generic-fuzz, on oss-fuzz, fix that, to ensure the base copy is a
generic-fuzzer.

Signed-off-by: Alexander Bulekov <alxndr@bu.edu>
---
 scripts/oss-fuzz/build.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scripts/oss-fuzz/build.sh b/scripts/oss-fuzz/build.sh
index 2656a89aea..dade5abe2d 100755
--- a/scripts/oss-fuzz/build.sh
+++ b/scripts/oss-fuzz/build.sh
@@ -90,7 +90,7 @@ fi
 # Prepare a preinstalled tree
 make install DESTDIR=$DEST_DIR/qemu-bundle
 
-targets=$(./qemu-fuzz-i386 | awk '$1 ~ /\*/  {print $2}')
+targets=$(./qemu-fuzz-i386 | grep generic-fuzz | awk '$1 ~ /\*/  {print $2}')
 base_copy="$DEST_DIR/qemu-fuzz-i386-target-$(echo "$targets" | head -n 1)"
 
 cp "./qemu-fuzz-i386" "$base_copy"
-- 
2.27.0



^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] oss-fuzz: ensure base_copy is a generic-fuzzer
  2022-07-20 18:09 [PATCH] oss-fuzz: ensure base_copy is a generic-fuzzer Alexander Bulekov
@ 2022-07-21  9:45 ` Paolo Bonzini
  0 siblings, 0 replies; 2+ messages in thread
From: Paolo Bonzini @ 2022-07-21  9:45 UTC (permalink / raw)
  To: Alexander Bulekov; +Cc: qemu-devel, Bandan Das, Stefan Hajnoczi, Thomas Huth

Queued, thanks.

Paolo




^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2022-07-21  9:50 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-07-20 18:09 [PATCH] oss-fuzz: ensure base_copy is a generic-fuzzer Alexander Bulekov
2022-07-21  9:45 ` Paolo Bonzini

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.