Added function to sort the provided certificate chain prior to verification.
[gnutls.git] / tests / Makefile.am
blob4aff7eb219782d9d70c097e16fe555ff853543c0
1 ## Process this file with automake to produce Makefile.in
2 # Copyright (C) 2004-2012 Free Software Foundation, Inc.
4 # Author: Simon Josefsson
6 # This file is part of GnuTLS.
8 # This file is free software; you can redistribute it and/or modify it
9 # under the terms of the GNU General Public License as published by
10 # the Free Software Foundation; either version 3 of the License, or
11 # (at your option) any later version.
13 # This file is distributed in the hope that it will be useful, but
14 # WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16 # General Public License for more details.
18 # You should have received a copy of the GNU General Public License
19 # along with this file; if not, write to the Free Software Foundation,
20 # Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
22 SUBDIRS = . rsa-md5-collision pkcs1-padding pkcs8-decode pkcs12-decode  \
23         userid cert-tests key-id sha2 safe-renegotiation dsa scripts ecdsa \
24         slow dtls srp
26 if ENABLE_OPENPGP
27 SUBDIRS += openpgp-certs
28 endif
30 if WANT_TEST_SUITE
31 SUBDIRS += suite
32 endif
34 EXTRA_DIST = suppressions.valgrind eagain-common.h
36 AM_CFLAGS = $(WARN_CFLAGS) $(WERROR_CFLAGS)
37 AM_CPPFLAGS = \
38         -I$(top_srcdir)/gl                      \
39         -I$(top_builddir)/gl                    \
40         -I$(top_srcdir)/lib/includes            \
41         -I$(top_builddir)/lib/includes          \
42         -I$(top_srcdir)/extra/includes  \
43         -I$(top_builddir)/extra/includes        \
44         -I$(top_srcdir)/lib                     \
45         -I$(top_srcdir)/doc/examples
47 AM_LDFLAGS = -no-install
48 LDADD = ../lib/libgnutls.la \
49         ../gl/libgnu.la \
50         libutils.la \
51         $(LTLIBGCRYPT)  \
52         $(LIBSOCKET) $(INET_NTOP_LIB) $(INET_PTON_LIB)
54 if ENABLE_MINITASN1
55 AM_CPPFLAGS += -I$(srcdir)/../lib/minitasn1
56 endif
58 noinst_LTLIBRARIES = libutils.la
59 libutils_la_SOURCES = utils.h utils.c
60 libutils_la_LIBADD = ../gl/libgnu.la
62 ctests = mini-deflate simple gc set_pkcs12_cred certder certuniqueid    \
63          mpi certificate_set_x509_crl dn parse_ca moredn mini           \
64          hostname-check cve-2008-4989 pkcs12_s2k chainverify            \
65          crq_key_id x509sign-verify cve-2009-1415 cve-2009-1416         \
66          crq_apis init_roundtrip pkcs12_s2k_pem dn2 mini-eagain         \
67          nul-in-x509-names x509_altname pkcs12_encode mini-x509         \
68          mini-rehandshake rng-fork mini-eagain-dtls resume-dtls \
69          x509cert x509cert-tl infoaccess rsa-encrypt-decrypt \
70          mini-loss-time mini-tdb mini-dtls-rehandshake mini-record \
71          mini-termination mini-x509-cas mini-x509-2 pkcs12_simple \
72          mini-emsgsize-dtls mini-handshake-timeout chainverify-unsorted
74 if ENABLE_OCSP
75 ctests += ocsp
76 endif
78 if ENABLE_OPENSSL
79 ctests +=  openssl
80 openssl_LDADD = $(LDADD) ../extra/libgnutls-openssl.la
81 endif
83 if ENABLE_OPENPGP
84 ctests += openpgp-auth openpgp-auth2 openpgp-keyring pgps2kgnu
85 endif
87 if HAVE_FORK
88 ctests += x509self x509dn anonself pskself dhepskself   \
89         resume setcredcrash
91 if ENABLE_OPENPGP
92 ctests += openpgpself 
93 endif
95 endif
97 check_PROGRAMS = $(ctests)
98 dist_check_SCRIPTS = rfc2253-escape-test
100 TESTS = $(ctests) $(dist_check_SCRIPTS)
102 TESTS_ENVIRONMENT =                                             \
103         CAFILE=$(srcdir)/cert-tests/ca-certs.pem                \
104         PKCS12_MANY_CERTS_FILE=$(srcdir)/pkcs12-decode/pkcs12_5certs.p12        \
105         PKCS12FILE=$(srcdir)/pkcs12-decode/client.p12           \
106         PKCS12PASSWORD=foobar                                   \
107         PKCS12FILE_2=$(srcdir)/pkcs12-decode/pkcs12_2certs.p12  \
108         PKCS12PASSWORD_2=""                                     \
109         EXEEXT=$(EXEEXT)                                        \
110         srcdir="$(srcdir)"
112 if WANT_TEST_SUITE
113 TESTS_ENVIRONMENT +=                                            \
114         $(VALGRIND)
115 endif