Some checks failed
Docker. / Ubuntu (push) Has been cancelled
User-agent updater. / User-agent (push) Failing after 15s
Lock Threads / lock (push) Failing after 10s
Waiting for answer. / waiting-for-answer (push) Failing after 22s
Close stale issues and PRs / stale (push) Successful in 13s
Needs user action. / needs-user-action (push) Failing after 8s
Can't reproduce. / cant-reproduce (push) Failing after 8s
23 lines
736 B
Bash
Executable File
23 lines
736 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
if [ -z "${OUT}" ] || [ -z "${SRC}" ] || [ -z "${WORK}" ]; then
|
|
echo "OUT, SRC or WORK not set - script expects to be called inside oss-fuzz build env"
|
|
exit 1
|
|
fi
|
|
|
|
autoreconf -vfi
|
|
./configure --disable-shared --enable-static
|
|
make clean
|
|
make -j$(nproc)
|
|
$CXX $CXXFLAGS -o $OUT/fuzzer -I./src/ $LIB_FUZZING_ENGINE ./src/tools/fuzzer.cxx ./src/hunspell/.libs/libhunspell-1.7.a
|
|
cp -f ./src/tools/fuzzer.options $OUT/
|
|
$CXX $CXXFLAGS -o $OUT/affdicfuzzer -I./src/ $LIB_FUZZING_ENGINE ./src/tools/affdicfuzzer.cxx ./src/hunspell/.libs/libhunspell-1.7.a
|
|
|
|
#dic/aff combos to test
|
|
cp -f ./tests/arabic.* $OUT/
|
|
cp -f ./tests/checkcompoundpattern*.* $OUT/
|
|
cp -f ./tests/korean.* $OUT/
|
|
cp -f ./tests/utf8*.* $OUT/
|