mirror of
https://github.com/open62541/open62541.git
synced 2025-06-03 04:00:21 +00:00
26 lines
936 B
Bash
Executable File
26 lines
936 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
# --------------------------------------------------------------------
|
|
# Copies all the corpus files, dict and options to the $OUT directory.
|
|
# This script is only used on oss-fuzz directly
|
|
# --------------------------------------------------------------------
|
|
|
|
fuzzerFiles=$(find $SRC/open62541/tests/fuzz/ -name "*.cc")
|
|
|
|
for F in $fuzzerFiles; do
|
|
fuzzerName=$(basename $F .cc)
|
|
|
|
if [ -d "$SRC/open62541/tests/fuzz/${fuzzerName}_corpus" ]; then
|
|
zip -jr $OUT/${fuzzerName}_seed_corpus.zip $SRC/open62541/tests/fuzz/${fuzzerName}_corpus/
|
|
fi
|
|
done
|
|
|
|
# fuzz_binary_message and fuzz_tcp_message have the same corpus, just copy the .zip
|
|
cp $OUT/fuzz_binary_message_seed_corpus.zip $OUT/fuzz_tcp_message_seed_corpus.zip
|
|
|
|
cp $SRC/open62541/tests/fuzz/*.dict $SRC/open62541/tests/fuzz/*.options $OUT/
|
|
|
|
# Copy the fuzzer stuff from mdns
|
|
SRC=$SRC/open62541/deps $SRC/open62541/deps/mdnsd/tests/fuzz/oss-fuzz-copy.sh
|