Add an OpenPGP authentication unit test.
[gnutls.git] / tests / Makefile.am
blob875173e46587007274e5f3c20ec6a32477ec190f
1 ## Process this file with automake to produce Makefile.in
2 # Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free Software
3 # Foundation, Inc.
5 # Author: Simon Josefsson
7 # This file is part of GnuTLS.
9 # This file is free software; you can redistribute it and/or modify it
10 # under the terms of the GNU General Public License as published by
11 # the Free Software Foundation; either version 3 of the License, or
12 # (at your option) any later version.
14 # This file is distributed in the hope that it will be useful, but
15 # WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17 # General Public License for more details.
19 # You should have received a copy of the GNU General Public License
20 # along with this file; if not, write to the Free Software Foundation,
21 # Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
23 SUBDIRS = . rsa-md5-collision pkcs1-padding pkcs8-decode pkcs12-decode  \
24         userid pathlen key-id sha2 safe-renegotiation
26 if ENABLE_OPENPGP
27 SUBDIRS += openpgp-certs
28 endif
30 EXTRA_DIST = libgcrypt.supp
32 AM_CFLAGS = $(WARN_CFLAGS) $(WERROR_CFLAGS)
33 AM_CPPFLAGS = \
34         -I$(top_srcdir)/gl                      \
35         -I$(top_builddir)/gl                    \
36         -I$(top_srcdir)/lib/includes            \
37         -I$(top_builddir)/lib/includes          \
38         -I$(top_srcdir)/libextra/includes       \
39         -I$(top_builddir)/libextra/includes     \
40         -I$(top_srcdir)/lib                     \
41         -I$(top_srcdir)/doc/examples
43 AM_LDFLAGS = -no-install
44 LDADD = ../lib/libgnutls.la \
45         ../gl/libgnu.la \
46         libutils.la \
47         $(LTLIBGCRYPT)  \
48         $(LIBSOCKET) $(INET_NTOP_LIB) $(INET_PTON_LIB)
50 if ENABLE_MINITASN1
51 AM_CPPFLAGS += -I$(srcdir)/../lib/minitasn1
52 endif
54 noinst_LTLIBRARIES = libutils.la
55 libutils_la_SOURCES = utils.h utils.c
57 ctests = simple gc set_pkcs12_cred certder certuniqueid mpi                     \
58         certificate_set_x509_crl dn parse_ca moredn crypto_rng mini     \
59         finished hostname-check cve-2008-4989 pkcs12_s2k chainverify    \
60         crq_key_id x509sign-verify cve-2009-1415 cve-2009-1416          \
61         crq_apis init_roundtrip pkcs12_s2k_pem dn2 mini-eagain          \
62         nul-in-x509-names x509_altname pkcs12_encode mini-x509          \
63         mini-x509-rehandshake
65 if ENABLE_OPENSSL
66 ctests +=  openssl
67 openssl_LDADD = $(LDADD) ../libextra/libgnutls-openssl.la
68 endif
70 if ENABLE_OPENPGP
71 ctests += openpgp-auth openpgp-keyring pgps2kgnu
72 openpgp_keyring_LDADD = $(LDADD) ../libextra/libgnutls-extra.la
73 endif
75 if HAVE_FORK
76 ctests += x509self x509dn anonself pskself dhepskself   \
77         tlsia resume netconf-psk setcredcrash
79 if ENABLE_OPENPGP
80 ctests += openpgpself 
81 endif
83 tlsia_LDADD = ../libextra/libgnutls-extra.la $(LDADD) $(LTLIBREADLINE)
84 endif
86 check_PROGRAMS = $(ctests)
87 dist_check_SCRIPTS = rfc2253-escape-test
89 TESTS = $(ctests) $(dist_check_SCRIPTS)
91 TESTS_ENVIRONMENT =                                             \
92         PKCS12FILE=$(srcdir)/pkcs12-decode/client.p12           \
93         PKCS12PASSWORD=foobar                                   \
94         PKCS12FILE_2=$(srcdir)/pkcs12-decode/pkcs12_2certs.p12  \
95         PKCS12PASSWORD_2=""                                     \
96         EXEEXT=$(EXEEXT)                                        \
97         srcdir="$(srcdir)"                                      \
98         $(VALGRIND)