aboutsummaryrefslogtreecommitdiffstats
path: root/src/extra_tests/fuzzers/setup.sh
diff options
context:
space:
mode:
Diffstat (limited to 'src/extra_tests/fuzzers/setup.sh')
-rwxr-xr-xsrc/extra_tests/fuzzers/setup.sh22
1 files changed, 0 insertions, 22 deletions
diff --git a/src/extra_tests/fuzzers/setup.sh b/src/extra_tests/fuzzers/setup.sh
deleted file mode 100755
index a810d947b..000000000
--- a/src/extra_tests/fuzzers/setup.sh
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/bin/sh
-
-mkdir bin
-mkdir output
-mkdir corpus
-
-CFG_FLAGS="--with-debug-info --unsafe-fuzzer-mode --minimized-build --enable-modules=tls,chacha20poly1305,ocb,ccm,system_rng,auto_rng"
-
-if [ ! -d libFuzzer ]; then
- svn co http://llvm.org/svn/llvm-project/llvm/trunk/lib/Fuzzer libFuzzer
-fi
-
-exit
-
-# Just need the static lib, not CLI or tests
-
-../../../configure.py $CFG_FLAGS --with-build-dir=afl-build --cc=clang --cc-bin='afl-clang-fast++'
-make -f afl-build/Makefile afl-build/libbotan-1.11.a -j8
-
-CLANG_COV_FLAGS="-fsanitize=address,undefined -fsanitize-coverage=edge,indirect-calls,8bit-counters -fno-sanitize-recover=undefined"
-../../../configure.py $CFG_FLAGS --with-build-dir=llvm-build --cc=clang "--cc-abi-flags=$CLANG_COV_FLAGS"
-make -f llvm-build/Makefile llvm-build/libbotan-1.11.a -j8