aboutsummaryrefslogtreecommitdiff
path: root/infra
diff options
context:
space:
mode:
authorAbhishek Arya <inferno@chromium.org>2021-01-26 15:28:08 -0800
committerGitHub <noreply@github.com>2021-01-26 15:28:08 -0800
commit89603f367a2b68c4e1f451fb16a4cedc402db7f7 (patch)
tree62117e06c00183c3d59e0fb20d5d23c7a7249a35 /infra
parent6fb0ce93667bdef91a4829c8ca5f238db0fbea50 (diff)
downloadoss-fuzz-89603f367a2b68c4e1f451fb16a4cedc402db7f7.tar.gz
Use afl++ in docs. (#5049)
Diffstat (limited to 'infra')
-rwxr-xr-xinfra/base-images/base-builder/compile_afl4
1 files changed, 3 insertions, 1 deletions
diff --git a/infra/base-images/base-builder/compile_afl b/infra/base-images/base-builder/compile_afl
index 945aa1cae..feba5a0fc 100755
--- a/infra/base-images/base-builder/compile_afl
+++ b/infra/base-images/base-builder/compile_afl
@@ -15,7 +15,7 @@
#
################################################################################
-echo -n "Compiling afl to $LIB_FUZZING_ENGINE ..."
+echo "Compiling afl driver to $LIB_FUZZING_ENGINE"
# afl needs its special coverage flags
export COVERAGE_FLAGS="-fsanitize-coverage=trace-pc-guard"
@@ -29,6 +29,8 @@ ar r $LIB_FUZZING_ENGINE $WORK/afl/*.o
popd > /dev/null
rm -rf $WORK/afl
+echo "Compiling afl++"
+
# Build and copy afl++ tools necessary for fuzzing.
pushd $SRC/aflplusplus > /dev/null