You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/bash -eu
|
|
|
|
$CC $CFLAGS -c -I./include src/nestegg.c
|
|
$CXX $CXXFLAGS -o $OUT/fuzz -I./include nestegg.o test/fuzz.cc $LIB_FUZZING_ENGINE
|
|
|
|
|
|
mkdir corpus/
|
|
cp -R ../testdata/*.webm corpus/
|
|
cp test/media/*.webm corpus/
|
|
zip -rj0 $OUT/fuzz_seed_corpus.zip corpus/*.webm
|