diff options
author | Brent Cook <bcook@openbsd.org> | 2015-03-21 19:04:54 -0500 |
---|---|---|
committer | Brent Cook <bcook@openbsd.org> | 2015-03-21 19:04:54 -0500 |
commit | 45065de1bafde1d34acd2cab1b8460663074961c (patch) | |
tree | 6a473b5864b1e652a0e45d8a260ed4d5113b79c8 /configure.ac | |
parent | e38dc152d6b96aa724c6b77f3383bb75787c6f81 (diff) | |
download | portable-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.ac | 4 |
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])) |
288 | AM_CONDITIONAL([OPENSSL_NO_ASM], [test "x$enable_asm" = "xno"]) | 288 | AM_CONDITIONAL([OPENSSL_NO_ASM], [test "x$enable_asm" = "xno"]) |
289 | 289 | ||
290 | AC_ARG_ENABLE([extratests], | ||
291 | AS_HELP_STRING([--enable-extratests], [Enable extra tests that may be unreliable on some platforms])) | ||
292 | AM_CONDITIONAL([ENABLE_EXTRATESTS], [test "x$enable_extratests" = xyes]) | ||
293 | |||
290 | old_cflags=$CFLAGS | 294 | old_cflags=$CFLAGS |
291 | CFLAGS="$old_cflags -I$srcdir/include" | 295 | CFLAGS="$old_cflags -I$srcdir/include" |
292 | AC_TRY_COMPILE([#include "$srcdir/crypto/modes/modes_lcl.h"], | 296 | AC_TRY_COMPILE([#include "$srcdir/crypto/modes/modes_lcl.h"], |