travis: turn on --enable-fuzzing-engine

Signed-off-by: Evgeny Vereshchagin <evvers@ya.ru>
This commit is contained in:
Evgeny Vereshchagin 2020-07-28 04:19:10 +00:00
parent 75196cd8be
commit c8f78bde3a
1 changed files with 8 additions and 0 deletions

View File

@ -82,6 +82,10 @@ function check_nonroot
conf_opts="$conf_opts --enable-werror"
fi
if [[ "$CC" =~ "clang" ]]; then
conf_opts="$conf_opts --enable-fuzzing-engine"
fi
xconfigure $conf_opts || return
$MAKE || return
@ -109,6 +113,10 @@ function check_root
conf_opts="$conf_opts --enable-werror"
fi
if [[ "$CC" =~ "clang" ]]; then
conf_opts="$conf_opts --enable-fuzzing-engine"
fi
xconfigure $conf_opts || return
$MAKE || return