Lines Matching +full:- +full:fsanitize
3 set -eu
5 AUTOCONF_FILES="Makefile.in aclocal.m4 ar-lib autom4te.cache compile \
6 config.guess config.h.in config.sub configure depcomp install-sh \
7 ltmain.sh missing *libtool test-driver"
11 if [ $# -gt 0 ];
19 AX_CODE_COVERAGE_PATH="$(aclocal --print-ac-dir)"/ax_code_coverage.m4
20 if [ ! -e ${AX_CODE_COVERAGE_PATH} ];
25 LCOV_VERSION=$(lcov --version | tr ' ' '\n' | tail -1)
27 # Ubuntu Zesty ships with lcov v1.13, but Zesty's autoconf-archive
31 # sed-patch ax_code_coverage.m4 as it's GPLv3, and this is an Apache v2
35 # [1] https://www.apache.org/licenses/GPL-compatibility.html
38 sed -ri 's|(lcov_version_list=)"([ 0-9.]+)"$|\1"'${LCOV_VERSION}'"|' \
42 test -f Makefile && make maintainer-clean
43 test -d linux && find linux -type d -empty | xargs -r rm -rf
45 find -name "$file" | xargs -r rm -rf
52 autoreconf -i
56 FLAGS="-fsanitize=address -fsanitize=leak -fsanitize=undefined -Wall -Werror"
60 --enable-code-coverage \