mirror of https://github.com/google/oss-fuzz.git
net-snmp: disable leaks (#6638)
This commit is contained in:
parent
3d74bc93b9
commit
fdc4507374
|
@ -18,3 +18,9 @@
|
|||
# Configure and build Net-SNMP and the fuzzers.
|
||||
export CC CXX CFLAGS CXXFLAGS SRC WORK OUT LIB_FUZZING_ENGINE
|
||||
ci/build.sh
|
||||
|
||||
# Avoid leak detection atm
|
||||
for fuzzer in mib agent_e2e; do
|
||||
echo "[libfuzzer]" > $OUT/snmp_${fuzzer}_fuzzer.options
|
||||
echo "detect_leaks=0" >> $OUT/snmp_${fuzzer}_fuzzer.options
|
||||
done
|
||||
|
|
Loading…
Reference in New Issue