From ed23c7a0c9722fc6bf4243b820baa6c6a700b16e Mon Sep 17 00:00:00 2001 From: Kostya Serebryany Date: Thu, 4 May 2017 14:43:16 -0700 Subject: ffmpeg: disable ffmpeg's seed corpora, see https://github.com/google/oss-fuzz/issues/567 --- projects/ffmpeg/build.sh | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) (limited to 'projects') diff --git a/projects/ffmpeg/build.sh b/projects/ffmpeg/build.sh index 90f35cb9..df48fe9a 100755 --- a/projects/ffmpeg/build.sh +++ b/projects/ffmpeg/build.sh @@ -170,8 +170,12 @@ make clean make -j$(nproc) install # Download test sampes, will be used as seed corpus. -export TEST_SAMPLES_PATH=$SRC/ffmpeg/fate-suite/ -make fate-rsync SAMPLES=$TEST_SAMPLES_PATH +# DISABLED. +# TODO: implement a better way to maintain a minimized seed corpora +# for all targets. As of 2017-05-04 now the combined size of corpora +# is too big for ClusterFuzz (over 10Gb compressed data). +# export TEST_SAMPLES_PATH=$SRC/ffmpeg/fate-suite/ +# make fate-rsync SAMPLES=$TEST_SAMPLES_PATH # Build the fuzzers. cd $SRC/ffmpeg @@ -192,5 +196,5 @@ for c in $CONDITIONALS ; do done # Find relevant corpus in test samples and archive them for every fuzzer. -cd $SRC -python group_seed_corpus.py $TEST_SAMPLES_PATH $OUT/ +#cd $SRC +#python group_seed_corpus.py $TEST_SAMPLES_PATH $OUT/ -- cgit v1.2.3