diff --git a/test/compilation/002-scanbuild b/test/compilation/002-scanbuild new file mode 100755 index 0000000..085cc65 --- /dev/null +++ b/test/compilation/002-scanbuild @@ -0,0 +1,14 @@ +#!/bin/sh + +cd ../.. + +for opts in \ + "--host-system=Linux" \ + "--host-system=NetBSD" \ + "--host-system=FreeBSD" \ + "--without-nss" \ + "--without-tomcrypt --without-nss" +do + ./configure $opts + scan-build make "$@" || exit 1 +done