aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorBrent Cook <bcook@openbsd.org>2015-03-21 19:04:54 -0500
committerBrent Cook <bcook@openbsd.org>2015-03-21 19:04:54 -0500
commit45065de1bafde1d34acd2cab1b8460663074961c (patch)
tree6a473b5864b1e652a0e45d8a260ed4d5113b79c8 /configure.ac
parente38dc152d6b96aa724c6b77f3383bb75787c6f81 (diff)
downloadportable-45065de1bafde1d34acd2cab1b8460663074961c.tar.gz
portable-45065de1bafde1d34acd2cab1b8460663074961c.tar.bz2
portable-45065de1bafde1d34acd2cab1b8460663074961c.zip
rework tests Makefile.am
There are so many test exceptions that need handling that it is easier to simply edit it directly rather than doing autogeneration anymore. This also puts biotest and pidwraptest behind a new --enable-extratests option, so they are easy to run but are not enabled by default.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac4
1 files changed, 4 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index 6a50c1b..af4b26e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -287,6 +287,10 @@ AC_ARG_ENABLE([asm],
287 AS_HELP_STRING([--disable-asm], [Disable assembly])) 287 AS_HELP_STRING([--disable-asm], [Disable assembly]))
288AM_CONDITIONAL([OPENSSL_NO_ASM], [test "x$enable_asm" = "xno"]) 288AM_CONDITIONAL([OPENSSL_NO_ASM], [test "x$enable_asm" = "xno"])
289 289
290AC_ARG_ENABLE([extratests],
291 AS_HELP_STRING([--enable-extratests], [Enable extra tests that may be unreliable on some platforms]))
292AM_CONDITIONAL([ENABLE_EXTRATESTS], [test "x$enable_extratests" = xyes])
293
290old_cflags=$CFLAGS 294old_cflags=$CFLAGS
291CFLAGS="$old_cflags -I$srcdir/include" 295CFLAGS="$old_cflags -I$srcdir/include"
292AC_TRY_COMPILE([#include "$srcdir/crypto/modes/modes_lcl.h"], 296AC_TRY_COMPILE([#include "$srcdir/crypto/modes/modes_lcl.h"],