mirror of https://github.com/google/oss-fuzz.git
Update build.sh
This commit is contained in:
parent
aae5b00982
commit
9b6ba4dc14
|
@ -20,6 +20,8 @@ make clean # Not strictly necessary, since we are building in a fresh dir.
|
||||||
make -j$(nproc) all # Build the fuzz targets.
|
make -j$(nproc) all # Build the fuzz targets.
|
||||||
make -j$(nproc) check # Sanity check, not strictly required, but nice to have.
|
make -j$(nproc) check # Sanity check, not strictly required, but nice to have.
|
||||||
|
|
||||||
# Copy the fuzzer executables and zip-ed corpora to $OUT
|
# Copy the fuzzer executables, zip-ed corpora, option and dictionary files to $OUT
|
||||||
find . -name '*_fuzzer' -exec cp -v '{}' $OUT ';'
|
find . -name '*_fuzzer' -exec cp -v '{}' $OUT ';'
|
||||||
|
find . -name '*_fuzzer.dict' -exec cp -v '{}' $OUT ';'
|
||||||
|
find . -name '*_fuzzer.options' -exec cp -v '{}' $OUT ';'
|
||||||
find . -name '*_fuzzer_seed_corpus.zip' -exec cp -v '{}' $OUT ';'
|
find . -name '*_fuzzer_seed_corpus.zip' -exec cp -v '{}' $OUT ';'
|
||||||
|
|
Loading…
Reference in New Issue