2016-03-04 17:30:51 +00:00
|
|
|
set -e
|
|
|
|
|
|
|
|
buildDir=../build
|
|
|
|
if [ $# -gt 0 ]; then
|
|
|
|
buildDir=$1
|
|
|
|
fi
|
|
|
|
|
2015-11-09 21:57:26 +00:00
|
|
|
for testSource in $(ls -1 *.cc); do
|
|
|
|
test=$(echo $testSource | sed -e 's/\.cc$//')
|
2016-03-04 17:30:51 +00:00
|
|
|
if [ ! -x $buildDir/fuzz/$test ] ; then
|
2015-11-09 21:57:26 +00:00
|
|
|
echo "Failed to find binary for $test"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
if [ ! -d ${test}_corpus ]; then
|
|
|
|
echo "Failed to find corpus directory for $test"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
if [ -d ${test}_corpus_old ]; then
|
|
|
|
echo "Old corpus directory for $test already exists"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
|
|
|
for testSource in $(ls -1 *.cc); do
|
|
|
|
test=$(echo $testSource | sed -e 's/\.cc$//')
|
2016-03-04 17:30:51 +00:00
|
|
|
mv ${test}_corpus ${test}_corpus_old
|
|
|
|
mkdir ${test}_corpus
|
2016-03-21 19:55:19 +00:00
|
|
|
$buildDir/fuzz/$test -max_len=50000 -merge=1 ${test}_corpus ${test}_corpus_old
|
2016-03-04 17:30:51 +00:00
|
|
|
rm -Rf ${test}_corpus_old
|
2015-11-09 21:57:26 +00:00
|
|
|
done
|