mirror of https://github.com/google/oss-fuzz.git
hdf5: disable leak detection for extended fuzzer (#9781)
The fuzzer runs into them quickly and it would be nice to have it explore more code for now. Signed-off-by: David Korczynski <david@adalogics.com>
This commit is contained in:
parent
9b661d95ff
commit
1efd21bd5b
|
@ -19,4 +19,4 @@ RUN apt-get update && apt-get install -y make autoconf automake libtool \
|
|||
pkg-config cmake zlib1g-dev
|
||||
RUN git clone --depth 1 https://github.com/HDFGroup/hdf5
|
||||
WORKDIR hdf5
|
||||
COPY build.sh *.c $SRC/
|
||||
COPY build.sh *.c *.options $SRC/
|
||||
|
|
|
@ -48,3 +48,4 @@ $CC $CFLAGS -std=c99 -c \
|
|||
$CXX $CXXFLAGS $LIB_FUZZING_ENGINE h5_extended_fuzzer.o ./build-dir/bin/libhdf5.a -lz -o $OUT/h5_extended_fuzzer
|
||||
|
||||
zip -j $OUT/h5_extended_fuzzer_seed_corpus.zip $SRC/hdf5/test/*.h5
|
||||
cp $SRC/*.options $OUT/
|
||||
|
|
|
@ -0,0 +1,2 @@
|
|||
[libfuzzer]
|
||||
detect_leaks=0
|
Loading…
Reference in New Issue