From 87df2687236f1b3d87b96f6242cd531657a1de6c Mon Sep 17 00:00:00 2001 From: Miroslav Lichvar Date: Wed, 1 Sep 2021 16:33:41 +0200 Subject: [PATCH] test: update compilation tests --- test/compilation/002-scanbuild | 1 + test/compilation/003-sanitizers | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/test/compilation/002-scanbuild b/test/compilation/002-scanbuild index da87407..cb2dc9e 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 1508295..d2c0646 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"