mirror of https://github.com/google/oss-fuzz.git
feat(tinyusb): Adds support for seed corpus integration (#9525)
This commit is contained in:
parent
d5a7d1c0ba
commit
7139d56a6b
|
@ -22,5 +22,9 @@ do
|
||||||
make -C $h get-deps
|
make -C $h get-deps
|
||||||
make -C $h all
|
make -C $h all
|
||||||
cp $h/_build/$(basename $h) $OUT/
|
cp $h/_build/$(basename $h) $OUT/
|
||||||
|
corpus=$h/$(basename $h)_seed_corpus.zip
|
||||||
|
if test -f $corpus; then
|
||||||
|
cp $corpus $OUT/
|
||||||
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue