Fix memory leaks.
[gnutls.git] / tests / Makefile.am
blob4d1a4359fe6ce9a2016a5f3d30b6a200ae824a9f
1 ## Process this file with automake to produce Makefile.in
2 # Copyright (C) 2004, 2005, 2006, 2007, 2008 Free Software Foundation
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 pathlen key-id sha2 hostname-check
25 if ENABLE_OPENPGP
26 SUBDIRS += openpgp
27 endif
29 EXTRA_DIST = libgcrypt.supp
31 AM_CPPFLAGS = -I$(top_srcdir)/lgl -I$(top_builddir)/lgl                 \
32         -I$(top_srcdir)/gl -I$(top_builddir)/gl                         \
33         -I$(top_srcdir)/includes -I$(top_builddir)/includes             \
34         -I$(top_srcdir)/doc/examples
35 AM_LDFLAGS = -no-install
36 LDADD = ../lib/libgnutls.la ../gl/libgnu.la ../lgl/liblgnu.la libutils.la
38 noinst_LTLIBRARIES = libutils.la
39 libutils_la_SOURCES = utils.h utils.c
41 ctests = simple openssl gc set_pkcs12_cred certder                      \
42         certificate_set_x509_crl dn parse_ca moredn crypto_rng mini
43 openssl_LDADD = $(LDADD) ../libextra/libgnutls-openssl.la
45 if HAVE_FORK
46 ctests += x509self x509signself x509dn anonself pskself dhepskself      \
47         tlsia resume netconf-psk
49 if ENABLE_OPENPGP
50 ctests += openpgpself 
51 endif
53 tlsia_LDADD = ../libextra/libgnutls-extra.la $(LDADD) @LTLIBREADLINE@
54 endif
56 if ENABLE_OPRFI
57 ctests +=  oprfi
58 endif
60 gc_LDADD = $(LDADD) $(LIBGCRYPT_LIBS)
62 check_PROGRAMS = $(ctests)
64 TESTS = $(ctests)
66 TESTS_ENVIRONMENT = \
67         PKCS12FILE=$(srcdir)/pkcs12-decode/client.p12   \
68         PKCS12PASSWORD=foobar \
69         $(VALGRIND)