[fuzzer] Update scripts for new fuzzers

This commit is contained in:
Nick Terrell 2019-07-17 17:41:41 -07:00
parent 9b258abd93
commit 399a80d48e
3 changed files with 11 additions and 6 deletions

View File

@ -35,6 +35,14 @@ LZ4_CFLAGS = $(CFLAGS) $(DEBUGFLAGS) $(MOREFLAGS)
LZ4_CXXFLAGS = $(CXXFLAGS) $(DEBUGFLAGS) $(MOREFLAGS)
LZ4_CPPFLAGS = $(CPPFLAGS) -I$(LZ4DIR) -DXXH_NAMESPACE=LZ4_
FUZZERS := \
compress_fuzzer \
decompress_fuzzer \
round_trip_fuzzer \
round_trip_stream_fuzzer
all: $(FUZZERS)
# Include a rule to build the static library if calling this target
# directly.
$(LZ4DIR)/liblz4.a:

View File

@ -16,8 +16,8 @@ echo "OUT: $OUT"
export MAKEFLAGS+="-j$(nproc)"
pushd ossfuzz
make V=1 compress_fuzzer decompress_fuzzer
make V=1 all
popd
# Copy the fuzzers to the target directory.
cp -v ossfuzz/compress_fuzzer ossfuzz/decompress_fuzzer $OUT/
cp -v ossfuzz/*_fuzzer $OUT/

View File

@ -8,10 +8,7 @@ git clone https://github.com/google/oss-fuzz.git /tmp/ossfuzz
if [[ ! -d /tmp/ossfuzz/projects/lz4 ]]
then
echo "Could not find the lz4 project in ossfuzz"
# Exit with a success code while the lz4 project is not expected to exist
# on oss-fuzz.
exit 0
exit 1
fi
# Modify the oss-fuzz Dockerfile so that we're checking out the current branch on travis.