aboutsummaryrefslogtreecommitdiffhomepage
path: root/infra/base-images/base-builder/compile
diff options
context:
space:
mode:
Diffstat (limited to 'infra/base-images/base-builder/compile')
-rwxr-xr-xinfra/base-images/base-builder/compile10
1 files changed, 0 insertions, 10 deletions
diff --git a/infra/base-images/base-builder/compile b/infra/base-images/base-builder/compile
index 1cd367af..bf4defad 100755
--- a/infra/base-images/base-builder/compile
+++ b/infra/base-images/base-builder/compile
@@ -22,11 +22,6 @@ if [ -n "${OLD_LLVMPASS-}" ]; then
export SANITIZER_FLAGS_introspector=$(echo $SANITIZER_FLAGS_introspector | sed -r 's/-O0/-flegacy-pass-manager/')
fi
-if [ "$SANITIZER" = "dataflow" ] && [ "$FUZZING_ENGINE" != "dataflow" ]; then
- echo "ERROR: 'dataflow' sanitizer can be used with 'dataflow' engine only."
- exit 1
-fi
-
if [ "$FUZZING_LANGUAGE" = "jvm" ]; then
if [ "$FUZZING_ENGINE" != "libfuzzer" ]; then
echo "ERROR: JVM projects can be fuzzed with libFuzzer engine only."
@@ -245,8 +240,3 @@ if [ "$SANITIZER" = "introspector" ]; then
cp -rf $SRC/inspector $OUT/inspector
fi
-
-if [[ "$FUZZING_ENGINE" = "dataflow" ]]; then
- # Remove seed corpus as it can be huge but is not needed for a dataflow build.
- rm -f $OUT/*.zip
-fi