Allow centipede to be used as a fuzzing engine.

fuzztest is compatible with libfuzzer in compatibility mode, and
fully compatible with centipede by default.

Change-Id: I0c8e636df642dede16d394d678008c5e064094b3
This commit is contained in:
Vincent Rabaud 2024-06-10 18:09:54 +02:00
parent 27731afd47
commit ea0e121b6a

View File

@ -39,7 +39,7 @@
set -eu set -eu
# Avoid fuzz engines that do not compile. # Avoid fuzz engines that do not compile.
if [[ "$FUZZING_ENGINE" != "libfuzzer" ]]; then if [[ "$FUZZING_ENGINE" != "libfuzzer" && "$FUZZING_ENGINE" != "centipede" ]]; then
exit exit
fi fi