diff --git a/infra/base-images/base-builder/compile b/infra/base-images/base-builder/compile index ad6c3ea1b41d..d6407356a21c 100755 --- a/infra/base-images/base-builder/compile +++ b/infra/base-images/base-builder/compile @@ -25,10 +25,6 @@ OSS_FUZZ_ON_DEMAND="${OSS_FUZZ_ON_DEMAND:-0}" RUST_SANITIZER=$SANITIZER if [ "$FUZZING_LANGUAGE" = "jvm" ]; then - if [ "$FUZZING_ENGINE" != "libfuzzer" ] && [ "$FUZZING_ENGINE" != "wycheproof" ]; then - echo "ERROR: JVM projects can be fuzzed with libFuzzer or tested with wycheproof engines only." - exit 1 - fi if [ "$SANITIZER" != "address" ] && [ "$SANITIZER" != "coverage" ] && [ "$SANITIZER" != "undefined" ] && [ "$SANITIZER" != "none" ] && [ "$SANITIZER" != "introspector" ]; then echo "ERROR: JVM projects can be fuzzed with AddressSanitizer or UndefinedBehaviorSanitizer or Introspector only." exit 1