We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1f5c75e commit 1e98a3eCopy full SHA for 1e98a3e
projects/tarantool/build.sh
@@ -52,6 +52,15 @@ if [[ "$FUZZING_ENGINE" == libfuzzer ]]; then
52
FUZZER_ARGS="-DENABLE_LIBFUZZER_STATIC_LINKAGE=ON"
53
fi
54
55
+# Apply potential fix for the problem described in
56
+# google/oss-fuzz#13226.
57
+# See https://github.com/ossf/fuzz-introspector/pull/2278
58
+if [[ "$SANITIZER" = "introspector" ]]; then
59
+ curl -O https://patch-diff.githubusercontent.com/raw/ossf/fuzz-introspector/pull/2278.patch
60
+ patch -p1 --directory=/fuzz-introspector/ < 2278.patch
61
+ export FUZZ_INTROSPECTOR_PARALLEL=false
62
+fi
63
+
64
cmake_args=(
65
# Specific to Tarantool
66
# Tarantool executable binary is needed for running Lua tests,
0 commit comments