mirror of https://github.com/google/oss-fuzz.git
Turn off ubsan enum check for ICU project (#11539)
Our fuzzer try to use out of bound enum to make sure the API will not crash so we like to turn that enum check off to avoid noise.
This commit is contained in:
parent
296dc88841
commit
979d7fd417
|
@ -30,7 +30,7 @@ CFLAGS=$CFLAGS CXXFLAGS=$CXXFLAGS CC=$CC CXX=$CXX \
|
|||
--with-library-bits=64 --with-data-packaging=static --enable-static --disable-shared
|
||||
|
||||
export ASAN_OPTIONS="detect_leaks=0"
|
||||
export UBSAN_OPTIONS="detect_leaks=0"
|
||||
export UBSAN_OPTIONS="detect_leaks=0,enum=0"
|
||||
|
||||
make -j$(nproc)
|
||||
|
||||
|
|
Loading…
Reference in New Issue