From: Miroslav Lichvar Date: Wed, 1 Sep 2021 14:33:41 +0000 (+0200) Subject: test: update compilation tests X-Git-Tag: 4.2-pre1~59 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=87df2687236f1b3d87b96f6242cd531657a1de6c;p=thirdparty%2Fchrony.git test: update compilation tests --- diff --git a/test/compilation/002-scanbuild b/test/compilation/002-scanbuild index da87407f..cb2dc9e2 100755 --- a/test/compilation/002-scanbuild +++ b/test/compilation/002-scanbuild @@ -9,6 +9,7 @@ for opts in \ "--without-nettle" \ "--without-nettle --without-nss" \ "--without-nettle --without-nss --without-tomcrypt" + "--without-nettle --without-nss --without-tomcrypt --without-gnutls" do ./configure $opts scan-build make "$@" || exit 1 diff --git a/test/compilation/003-sanitizers b/test/compilation/003-sanitizers index 15082956..d2c06460 100755 --- a/test/compilation/003-sanitizers +++ b/test/compilation/003-sanitizers @@ -37,7 +37,8 @@ for CC in gcc clang; do "--without-gnutls" \ "--without-nettle" \ "--without-nettle --without-nss" \ - "--without-nettle --without-nss --without-tomcrypt"; \ + "--without-nettle --without-nss --without-tomcrypt" \ + "--without-nettle --without-nss --without-tomcrypt --without-gnutls"; \ do for san_options in "" "-fsanitize=address" "-fsanitize=memory"; do export CFLAGS="-O2 -g -fsanitize=undefined -fsanitize=float-divide-by-zero -fno-sanitize-recover=undefined,float-divide-by-zero $san_options $arch_opts"