oss-fuzz/projects/nestegg/build.sh

11 lines
264 B
Bash
Raw Normal View History

#!/bin/bash -eu
2018-06-01 03:06:07 +00:00
$CC $CFLAGS -c -I./include src/nestegg.c
$CXX $CXXFLAGS -o $OUT/fuzz -I./include nestegg.o test/fuzz.cc -lFuzzingEngine
mkdir corpus/
2018-06-01 03:06:07 +00:00
cp -R ../testdata/*.webm corpus/
cp test/media/*.webm corpus/
zip -rj0 $OUT/fuzz_seed_corpus.zip corpus/*.webm