aboutsummaryrefslogtreecommitdiff
path: root/tests/Makefile.am
diff options
context:
space:
mode:
authorBrent Cook <busterb@gmail.com>2015-05-06 22:37:41 -0500
committerBrent Cook <busterb@gmail.com>2015-05-06 22:39:32 -0500
commit51bfd4921a18552b72ecc15f282e52116c136554 (patch)
treecab13bb683a36f9d20f0b4d7f7b924c92cc88c53 /tests/Makefile.am
parent91f01629b9b1492b2a7447ef7e746f6135a6edbf (diff)
downloadportable-51bfd4921a18552b72ecc15f282e52116c136554.tar.gz
portable-51bfd4921a18552b72ecc15f282e52116c136554.tar.bz2
portable-51bfd4921a18552b72ecc15f282e52116c136554.zip
add app tests from regress/usr.bin/openssl
These are added directly rather than imported by update.sh since they require local modifications and its not worth breaking everyone's git forks yet to import them through cvs2git.
Diffstat (limited to 'tests/Makefile.am')
-rw-r--r--tests/Makefile.am20
1 files changed, 20 insertions, 0 deletions
diff --git a/tests/Makefile.am b/tests/Makefile.am
index 2ed7a44..aed12ff 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -3,6 +3,7 @@ include $(top_srcdir)/Makefile.am.common
3AM_CPPFLAGS += -I $(top_srcdir)/crypto/modes 3AM_CPPFLAGS += -I $(top_srcdir)/crypto/modes
4AM_CPPFLAGS += -I $(top_srcdir)/crypto/asn1 4AM_CPPFLAGS += -I $(top_srcdir)/crypto/asn1
5AM_CPPFLAGS += -I $(top_srcdir)/ssl 5AM_CPPFLAGS += -I $(top_srcdir)/ssl
6AM_CPPFLAGS += -I $(top_srcdir)/apps
6 7
7LDADD = $(PLATFORM_LDADD) $(PROG_LDADD) 8LDADD = $(PLATFORM_LDADD) $(PROG_LDADD)
8LDADD += $(top_builddir)/ssl/libssl.la 9LDADD += $(top_builddir)/ssl/libssl.la
@@ -192,6 +193,13 @@ TESTS += mont
192check_PROGRAMS += mont 193check_PROGRAMS += mont
193mont_SOURCES = mont.c 194mont_SOURCES = mont.c
194 195
196# optionstest
197TESTS += optionstest
198check_PROGRAMS += optionstest
199optionstest_SOURCES = optionstest.c
200optionstest_SOURCES += $(top_srcdir)/apps/apps.c
201optionstest_SOURCES += $(top_srcdir)/apps/strtonum.c
202
195# pbkdf2 203# pbkdf2
196TESTS += pbkdf2 204TESTS += pbkdf2
197check_PROGRAMS += pbkdf2 205check_PROGRAMS += pbkdf2
@@ -270,6 +278,18 @@ ssltest_SOURCES = ssltest.c
270EXTRA_DIST += ssltest.sh 278EXTRA_DIST += ssltest.sh
271EXTRA_DIST += testssl ca.pem server.pem 279EXTRA_DIST += testssl ca.pem server.pem
272 280
281# testdsa
282TESTS += testdsa.sh
283EXTRA_DIST += testdsa.sh
284
285# testenc
286TESTS += testenc.sh
287EXTRA_DIST += testenc.sh
288
289# testrsa
290TESTS += testrsa.sh
291EXTRA_DIST += testrsa.sh
292
273# timingsafe 293# timingsafe
274TESTS += timingsafe 294TESTS += timingsafe
275check_PROGRAMS += timingsafe 295check_PROGRAMS += timingsafe