aboutsummaryrefslogtreecommitdiffhomepage
path: root/infra
diff options
context:
space:
mode:
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 945aa1ca..feba5a0f 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