From c8f78bde3a813ed81b0d6aae0093da53396f9f55 Mon Sep 17 00:00:00 2001 From: Evgeny Vereshchagin Date: Tue, 28 Jul 2020 04:19:10 +0000 Subject: [PATCH] travis: turn on --enable-fuzzing-engine Signed-off-by: Evgeny Vereshchagin --- .travis-functions.sh | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.travis-functions.sh b/.travis-functions.sh index 9cdc2357fa..563785b646 100755 --- a/.travis-functions.sh +++ b/.travis-functions.sh @@ -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 -- 2.47.3